/* =========================================
   Clean Sidebar Styles
   ========================================= */
.service-sidebar {
    padding-right: 20px;
}

/* Sticky Sidebar Style */
.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    z-index: 10;
}

.service-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-menu li {
    margin-bottom: 12px;
}

.service-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    background: #4d9dc02b;
}

.service-menu li a i {
    color: #333333;
    font-size: 12px;
    transition: all 0.3s ease;
}

/* Active & Hover States */
.service-menu li.active a,
.service-menu li a:hover {
    color: #4d9dc0;
    /* Theme Blue */
}

.service-menu li.active a i,
.service-menu li a:hover i {
    color: #4d9dc0;
}

/* Minimal Sidebar Contact */
.sidebar-minimal-cta {
    margin-top: 50px;
}

/* =========================================
    Main Content Styles (Typography & Buttons)
    ========================================= */
.service-subtitle {
    color: #4d9dc0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.service-title {
    font-size: 32px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 25px;
    line-height: 1.3;
}

.service-text {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-callout {
    background-color: #f8f9fa;
    border-left: 3px solid #4d9dc0;
    padding: 20px 25px;
    border-radius: 4px;
    margin: 35px 0;
}

.service-callout p {
    margin: 0;
    font-weight: 600;
    color: #111111;
    font-size: 14px;
}

.btn-blue {
    background-color: #5b9bd5;
    /* Blue from screenshot */
    color: #ffffff;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-blue:hover {
    background-color: #4a84b8;
    color: #ffffff;
}

.location-list {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    padding-left: 20px;
    margin-bottom: 30px;
    column-count: 2;
    /* Splits the long list into 2 columns */
    column-gap: 20px;
}

@media (max-width: 768px) {
    .location-list {
        column-count: 1;
        /* Stacks to 1 column on mobile */
    }
}

.location-list li {
    margin-bottom: 8px;
}

.location-list li a {
    color: #0d6efd;
    /* Classic blue link color */
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-list li a:hover {
    color: #0a58ca;
    text-decoration: underline;
}