/* Background to match the light grey design */
.custom-light-bg {
    background-color: #D9E6FF; 
    color: #334155;
    z-index: 0;
    position: relative;
}

/* Left Column Styling */
.service-hero-image img {
    object-fit: cover;
    max-height: 500px;
}

.service-main-title {
    color: var(--color-2);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.service-text-muted, 
.service-body-dynamic {
    color: #000;
    font-size: 20px;
    line-height: 1.8;
}

/* Transform standard WYSIWYG lists into the 2-column green checkmark grid */
.service-body-dynamic ul {
    /*display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;*/
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

.service-body-dynamic ul li {
    position: relative;
    padding-left: 28px;
    font-size: 1.3vw;
    font-weight: 600;
    color: #000;
}

/* FontAwesome Green Checkmark */
.service-body-dynamic ul li::before {
    content: "\f058"; /* Check circle solid */
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-2); 
    font-size: 16px;
}

/* Sidebar Styling */
.sidebar-box.border {
    border-color: #cbd5e1 !important;
}

.sidebar-title {
    color: #1e293b;
    font-size: 1.4vw;
    font-weight: 700;
}

/* Service Menu Links */
.service-block-link {
    background-color: #D9E6FF;
    color: #000;
    font-size: 1.1vw;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s ease-in-out;
    border: 1px solid #e2e8f0;
}

.service-block-link:hover {
    background-color: #f1f5f9;
    color: #1e293b;
    border-color: #cbd5e1;
}

.service-block-link.active-link {
    background-color: #cda85f;
    color: #0f172a;
    font-weight: 600;
    border-color: #cda85f;
}

.service-block-link .link-icon {
    font-size: 11px;
    color: #000;
}
.text-gold{color:#cda85f}
/* Connect / Promo Box */
.connect-box {
    /* Green gradient to emulate the audit banner */
    background: radial-gradient(circle at center, #0e3552 0%, #000 70%);
    box-shadow: 0 10px 25px -5px rgb(18 39 54);
}

.connect-title {
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.connect-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1vw;
    color: #ffffff;
}

.connect-item a:hover {
    text-decoration: underline !important;
}
.call-section span{
    font-size: 1.2vw;
}
.call-section a{
    font-size: 1.1vw;
}
.email-section{
    font-size: 1.2vw;
}
.email-section a{
    font-size: 1.1vw;
}
/* Responsive Fixes */
@media (max-width: 768px) {
    .service-body-dynamic ul {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    .service-body-dynamic ul li {
        font-size: 16px;
    }
    .connect-icon{
        font-size: 18px;
    }
    .call-section span{
        font-size: 20px;
    }
    .email-section span{
        font-size: 20px;
    }
    .call-section a{
        font-size: 18px;
    }
    .email-section a{
        font-size: 18px;
    }
    .sidebar-title{
        font-size: 20px;
    }
    .service-block-link {
        font-size: 18px;
    }
}