/* =====================================================
   ORIONSOFT TECHNOLOGIES
   MEDICAL & HEALTHCARE PAGE
   ===================================================== */


/* ==========================
   BASE
========================== */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;
    font-family:'Plus Jakarta Sans', Arial, sans-serif;
    color:#111827;
    background:#ffffff;
}

.health-container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:0 30px;
}


/* ==========================
   COMMON TAG
========================== */

.health-tag{
    display:inline-block;
    margin-bottom:15px;
    font-size:14px;
    line-height:1.4;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#1565ff;
}


/* ==========================
   COMMON BUTTON
========================== */

.health-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:14px 28px;
    border-radius:6px;
    font-size:15px;
    line-height:1.4;
    font-weight:700;
    text-decoration:none;
    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}

.health-btn-primary{
    color:#ffffff;
    background:#1565ff;
    border:2px solid #1565ff;
    box-shadow:0 10px 25px rgba(21,101,255,.20);
}

.health-btn-primary:hover{
    color:#ffffff;
    background:#0d4fd6;
    border-color:#0d4fd6;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(21,101,255,.28);
}

.health-btn-outline{
    color:#1565ff;
    background:#ffffff;
    border:2px solid #1565ff;
}

.health-btn-outline:hover{
    color:#ffffff;
    background:#1565ff;
    transform:translateY(-3px);
}


/* =====================================================
   HERO SECTION
===================================================== */

.health-hero{
    position:relative;
    width:100%;
    min-height:680px;
    padding:150px 0 80px;
    overflow:hidden;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(21,101,255,.10),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f7faff 0%,
            #ffffff 50%,
            #eef5ff 100%
        );
}

.health-hero::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    top:-180px;
    right:-120px;
    background:rgba(21,101,255,.07);
}

.health-hero::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    bottom:-130px;
    left:-80px;
    background:rgba(21,101,255,.06);
}

.health-hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}


/* ==========================
   HERO CONTENT
========================== */

.health-hero-content{
    max-width:620px;
}

.health-hero-content h1{
    margin:0 0 25px;
    font-size:58px;
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:800;
    color:#0f172a;
}

.health-hero-content p{
    margin:0;
    max-width:600px;
    font-size:17px;
    line-height:1.8;
    font-weight:400;
    color:#5f6775;
}

.health-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:35px;
}


/* ==========================
   HERO IMAGE
========================== */

.health-hero-image{
    position:relative;
    width:100%;
}

.health-hero-image::before{
    content:"";
    position:absolute;
    top:-20px;
    right:-20px;
    width:80%;
    height:85%;
    background:#1565ff;
    border-radius:18px;
    opacity:.08;
    z-index:-1;
}

.health-hero-image img{
    display:block;
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 25px 60px rgba(15,23,42,.18);
}


/* =====================================================
   COMMON SECTION HEADING
===================================================== */

.health-section-heading{
    max-width:850px;
    margin:0 auto 55px;
    text-align:center;
}

.health-section-heading h2{
    margin:0 0 20px;
    font-size:42px;
    line-height:1.2;
    letter-spacing:-1px;
    font-weight:800;
    color:#111827;
}

.health-section-heading p{
    max-width:750px;
    margin:0 auto;
    font-size:16px;
    line-height:1.8;
    color:#6b7280;
}


/* =====================================================
   HEALTHCARE FEATURE SECTIONS
===================================================== */

.health-feature-section{
    position:relative;
    padding:100px 0;
    background:#ffffff;
}

.health-light-bg{
    background:#f7f9fc;
}

.health-feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:75px;
    align-items:center;
}


/* ==========================
   FEATURE CONTENT
========================== */

.health-feature-content{
    max-width:600px;
}

.health-feature-content h2{
    margin:0 0 25px;
    font-size:44px;
    line-height:1.2;
    letter-spacing:-1px;
    font-weight:800;
    color:#111827;
}

.health-feature-content p{
    margin:0 0 18px;
    font-size:16px;
    line-height:1.8;
    color:#626b79;
}

.health-feature-content .health-btn{
    margin-top:15px;
}


/* ==========================
   FEATURE IMAGE
========================== */

.health-feature-image{
    position:relative;
    overflow:hidden;
    border-radius:14px;
}

.health-feature-image img{
    display:block;
    width:100%;
    height:470px;
    object-fit:cover;
    transition:transform .6s ease;
}

.health-feature-image:hover img{
    transform:scale(1.04);
}


/* ==========================
   IMAGE DECORATION
========================== */

.health-feature-image::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(15,23,42,.12)
        );
}


/* =====================================================
   SERVICES INTRO SECTION
===================================================== */

.health-services{
    padding:100px 0 45px;
    background:#ffffff;
}


/* =====================================================
   TABLET BASIC RESPONSIVE
   Full mobile responsive will be in Part 4C
===================================================== */

@media(max-width:1024px){

    .health-container{
        padding:0 24px;
    }

    .health-hero{
        min-height:auto;
        padding:130px 0 70px;
    }

    .health-hero-grid,
    .health-feature-grid{
        gap:45px;
    }

    .health-hero-content h1{
        font-size:48px;
    }

    .health-hero-image img{
        height:440px;
    }

    .health-feature-content h2{
        font-size:38px;
    }

    .health-feature-image img{
        height:420px;
    }

    .health-section-heading h2{
        font-size:38px;
    }

}


/* =====================================================
   MOBILE BASIC RESPONSIVE
===================================================== */

@media(max-width:767px){

    .health-container{
        padding:0 18px;
    }

    .health-hero{
        padding:115px 0 60px;
    }

    .health-hero-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .health-hero-content{
        max-width:100%;
    }

    .health-hero-content h1{
        font-size:38px;
        line-height:1.15;
        letter-spacing:-1px;
    }

    .health-hero-content p{
        font-size:15px;
        line-height:1.75;
    }

    .health-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .health-btn{
        width:100%;
    }

    .health-hero-image img{
        height:330px;
    }

    .health-feature-section{
        padding:70px 0;
    }

    .health-feature-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .health-feature-content{
        max-width:100%;
    }

    .health-feature-content h2{
        font-size:32px;
    }

    .health-feature-content p{
        font-size:15px;
    }

    .health-feature-image img{
        height:320px;
    }

    .health-section-heading{
        margin-bottom:40px;
    }

    .health-section-heading h2{
        font-size:31px;
    }

    .health-section-heading p{
        font-size:15px;
    }

    .health-services{
        padding:70px 0 30px;
    }

}
/* =====================================================
   PART 4B
   HEALTHCARE SERVICE CARDS
===================================================== */

.health-services-grid-section{
    padding:20px 0 100px;
    background:#ffffff;
}

.health-services-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:35px;
}

.health-service-card{
    background:#ffffff;
    border:1px solid #e8edf5;
    border-radius:14px;
    overflow:hidden;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.health-service-card:hover{
    transform:translateY(-8px);
    border-color:#d7e4ff;
    box-shadow:0 20px 45px rgba(15,23,42,.10);
}


/* ==========================
   SERVICE IMAGE
========================== */

.health-service-image{
    width:100%;
    height:270px;
    overflow:hidden;
    background:#f3f6fa;
}

.health-service-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.health-service-card:hover
.health-service-image img{
    transform:scale(1.06);
}


/* ==========================
   SERVICE CONTENT
========================== */

.health-service-content{
    padding:30px;
}

.health-service-content h3{
    margin:0 0 15px;
    font-size:24px;
    line-height:1.3;
    font-weight:800;
    color:#111827;
}

.health-service-content p{
    margin:0 0 22px;
    font-size:15px;
    line-height:1.75;
    color:#6b7280;
}

.health-service-content h4{
    margin:0 0 12px;
    font-size:15px;
    font-weight:700;
    color:#1565ff;
}

.health-service-content ul{
    margin:0;
    padding:0;
    list-style:none;
}

.health-service-content ul li{
    position:relative;
    margin-bottom:10px;
    padding-left:25px;
    font-size:14px;
    line-height:1.6;
    color:#4b5563;
}

.health-service-content ul li:last-child{
    margin-bottom:0;
}

.health-service-content ul li::before{
    content:"✓";
    position:absolute;
    top:0;
    left:0;
    color:#1565ff;
    font-weight:800;
}


/* =====================================================
   DEVELOPMENT PROCESS
===================================================== */

.health-process-section{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:#f7f9fc;
}

.health-process-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    top:-180px;
    right:-150px;
    border-radius:50%;
    background:rgba(21,101,255,.06);
}

.health-process-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

.health-process-card{
    position:relative;
    min-height:330px;
    padding:35px 25px;
    background:#ffffff;
    border:1px solid #e7ecf4;
    border-radius:14px;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.health-process-card:hover{
    transform:translateY(-8px);
    border-color:#cfe0ff;
    box-shadow:0 18px 40px rgba(15,23,42,.10);
}

.health-process-number{
    position:absolute;
    top:20px;
    right:22px;
    font-size:44px;
    line-height:1;
    font-weight:800;
    color:rgba(21,101,255,.09);
}

.health-process-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:60px;
    height:60px;
    margin-bottom:25px;
    border-radius:12px;
    background:#edf4ff;
    font-size:27px;
}

.health-process-card h3{
    margin:0 0 15px;
    font-size:21px;
    line-height:1.35;
    font-weight:800;
    color:#111827;
}

.health-process-card p{
    margin:0;
    font-size:14px;
    line-height:1.75;
    color:#6b7280;
}


/* ==========================
   PROCESS CTA
========================== */

.health-process-cta{
    max-width:900px;
    margin:55px auto 0;
    padding:45px;
    text-align:center;
    background:#ffffff;
    border:1px solid #e4eaf3;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(15,23,42,.07);
}

.health-process-cta h3{
    margin:0 0 12px;
    font-size:30px;
    line-height:1.3;
    font-weight:800;
    color:#111827;
}

.health-process-cta p{
    max-width:650px;
    margin:0 auto 25px;
    font-size:15px;
    line-height:1.75;
    color:#6b7280;
}


/* =====================================================
   KEY BENEFITS
===================================================== */

.health-benefits-section{
    padding:100px 0;
    background:#ffffff;
}

.health-benefits-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;
}

.health-benefit-card{
    position:relative;
    padding:40px;
    background:#ffffff;
    border:1px solid #e6ebf2;
    border-radius:14px;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.health-benefit-card:hover{
    transform:translateY(-7px);
    border-color:#cfe0ff;
    box-shadow:0 18px 40px rgba(15,23,42,.09);
}


/* ==========================
   COMMON CARD ICON
========================== */

.health-card-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:65px;
    height:65px;
    margin-bottom:25px;
    border-radius:14px;
    background:#edf4ff;
    font-size:29px;
    transition:
        transform .35s ease,
        background .35s ease;
}

.health-benefit-card:hover
.health-card-icon,
.health-comprehensive-card:hover
.health-card-icon{
    transform:scale(1.08);
    background:#e1ecff;
}

.health-benefit-card h3{
    margin:0 0 15px;
    font-size:23px;
    line-height:1.35;
    font-weight:800;
    color:#111827;
}

.health-benefit-card p{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:#6b7280;
}


/* =====================================================
   COMPREHENSIVE HEALTHCARE SERVICES
===================================================== */

.health-comprehensive-section{
    position:relative;
    padding:100px 0;
    background:#f7f9fc;
}

.health-comprehensive-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

.health-comprehensive-card{
    position:relative;
    min-height:300px;
    padding:35px 25px;
    background:#ffffff;
    border:1px solid #e5eaf1;
    border-radius:14px;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.health-comprehensive-card:hover{
    transform:translateY(-8px);
    border-color:#cfe0ff;
    box-shadow:0 18px 40px rgba(15,23,42,.10);
}

.health-comprehensive-card h3{
    margin:0 0 15px;
    font-size:21px;
    line-height:1.35;
    font-weight:800;
    color:#111827;
}

.health-comprehensive-card p{
    margin:0;
    font-size:14px;
    line-height:1.8;
    color:#6b7280;
}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media(max-width:1024px){

    .health-services-grid{
        gap:25px;
    }

    .health-service-image{
        height:240px;
    }

    .health-service-content{
        padding:25px;
    }

    .health-process-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .health-process-card{
        min-height:300px;
    }

    .health-comprehensive-grid{
        grid-template-columns:repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media(max-width:767px){

    .health-services-grid-section{
        padding:15px 0 70px;
    }

    .health-services-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .health-service-card{
        border-radius:12px;
    }

    .health-service-image{
        height:230px;
    }

    .health-service-content{
        padding:24px 20px;
    }

    .health-service-content h3{
        font-size:21px;
    }

    .health-process-section{
        padding:70px 0;
    }

    .health-process-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .health-process-card{
        min-height:auto;
        padding:30px 22px;
    }

    .health-process-number{
        font-size:38px;
    }

    .health-process-cta{
        margin-top:40px;
        padding:35px 20px;
    }

    .health-process-cta h3{
        font-size:25px;
    }

    .health-benefits-section{
        padding:70px 0;
    }

    .health-benefits-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .health-benefit-card{
        padding:30px 22px;
    }

    .health-benefit-card h3{
        font-size:21px;
    }

    .health-comprehensive-section{
        padding:70px 0;
    }

    .health-comprehensive-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .health-comprehensive-card{
        min-height:auto;
        padding:30px 22px;
    }

}
/* =====================================================
   PART 4C
   FINAL CTA + FAQ + FINAL RESPONSIVE
===================================================== */


/* =====================================================
   FINAL CTA
===================================================== */

.health-final-cta{
    padding:90px 0;
    background:#ffffff;
}

.health-final-cta-box{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    padding:55px 60px;
    overflow:hidden;
    border-radius:20px;
    background:
        linear-gradient(
            135deg,
            #071a3d 0%,
            #0d3b85 55%,
            #1565ff 100%
        );
    box-shadow:0 25px 60px rgba(15,23,42,.18);
}

.health-final-cta-box::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    top:-180px;
    right:-80px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.health-final-cta-box::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    bottom:-120px;
    left:35%;
    border-radius:50%;
    background:rgba(255,255,255,.06);
}

.health-final-cta-content{
    position:relative;
    z-index:2;
    max-width:750px;
}

.health-final-cta-content .health-tag{
    color:#bcd3ff;
}

.health-final-cta-content h2{
    margin:0 0 18px;
    font-size:40px;
    line-height:1.2;
    letter-spacing:-1px;
    font-weight:800;
    color:#ffffff;
}

.health-final-cta-content p{
    margin:0;
    max-width:700px;
    font-size:16px;
    line-height:1.8;
    color:rgba(255,255,255,.80);
}

.health-final-cta-button{
    position:relative;
    z-index:2;
    flex-shrink:0;
}

.health-final-cta-button
.health-btn-primary{
    color:#1565ff;
    background:#ffffff;
    border-color:#ffffff;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.health-final-cta-button
.health-btn-primary:hover{
    color:#ffffff;
    background:#0f172a;
    border-color:#0f172a;
}


/* =====================================================
   FAQ SECTION
===================================================== */

.health-faq-section{
    padding:100px 0;
    background:#f7f9fc;
}

.health-faq-wrapper{
    max-width:950px;
    margin:0 auto;
}

.health-faq-item{
    margin-bottom:16px;
    overflow:hidden;
    background:#ffffff;
    border:1px solid #e5eaf1;
    border-radius:12px;
    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}

.health-faq-item:last-child{
    margin-bottom:0;
}

.health-faq-item:hover{
    border-color:#cbdcff;
}

.health-faq-item.active{
    border-color:#b9d0ff;
    box-shadow:0 12px 30px rgba(15,23,42,.07);
}


/* ==========================
   FAQ QUESTION
========================== */

.health-faq-question{
    width:100%;
    min-height:75px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    padding:20px 25px;
    border:none;
    outline:none;
    cursor:pointer;
    text-align:left;
    background:#ffffff;
    font-family:inherit;
    font-size:17px;
    line-height:1.5;
    font-weight:700;
    color:#111827;
}

.health-faq-question:hover{
    color:#1565ff;
}

.health-faq-item.active
.health-faq-question{
    color:#1565ff;
}


/* ==========================
   FAQ PLUS / MINUS
========================== */

.health-faq-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:50%;
    background:#edf4ff;
    color:#1565ff;
    font-size:24px;
    line-height:1;
    font-weight:400;
    transition:
        transform .3s ease,
        background .3s ease;
}

.health-faq-item.active
.health-faq-icon{
    color:#ffffff;
    background:#1565ff;
}


/* ==========================
   FAQ ANSWER
========================== */

.health-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.health-faq-answer p{
    margin:0;
    padding:0 25px 25px;
    font-size:15px;
    line-height:1.8;
    color:#6b7280;
}

.health-faq-link{
    display:inline-block;
    margin:0 25px 25px;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    color:#1565ff;
    transition:.3s;
}

.health-faq-link:hover{
    color:#0d4fd6;
    transform:translateX(4px);
}


/* =====================================================
   FINAL DESKTOP ADJUSTMENTS
===================================================== */

@media(min-width:1025px){

    .health-service-card{
        height:100%;
    }

    .health-benefit-card{
        height:100%;
    }

    .health-comprehensive-card{
        height:100%;
    }

}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media(max-width:1024px){

    .health-final-cta{
        padding:75px 0;
    }

    .health-final-cta-box{
        padding:45px 40px;
        gap:35px;
    }

    .health-final-cta-content h2{
        font-size:34px;
    }

    .health-faq-section{
        padding:80px 0;
    }

}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media(max-width:767px){

    /* ==========================
       GENERAL
    ========================== */

    .health-tag{
        font-size:12px;
        letter-spacing:.8px;
    }


    /* ==========================
       HERO MOBILE
    ========================== */

    .health-hero{
        min-height:auto;
        padding-top:110px;
    }

    .health-hero-grid{
        display:flex;
        flex-direction:column;
    }

    .health-hero-content{
        order:1;
    }

    .health-hero-image{
        order:2;
    }

    .health-hero-image img{
        width:100%;
        height:300px;
        border-radius:12px;
    }


    /* ==========================
       FEATURE SECTIONS MOBILE
    ========================== */

    .health-feature-grid,
    .health-feature-grid.health-reverse{
        display:flex;
        flex-direction:column;
    }

    .health-feature-content,
    .health-feature-image{
        width:100%;
    }

    .health-feature-image{
        order:2;
    }

    .health-feature-content{
        order:1;
    }

    .health-feature-image img{
        width:100%;
        height:300px;
    }


    /* ==========================
       BUTTON MOBILE
    ========================== */

    .health-btn{
        width:100%;
        min-height:50px;
        padding:13px 20px;
        text-align:center;
    }


    /* ==========================
       SERVICE CARDS
    ========================== */

    .health-service-image{
        height:220px;
    }

    .health-service-content h3{
        font-size:20px;
    }


    /* ==========================
       PROCESS
    ========================== */

    .health-process-icon,
    .health-card-icon{
        width:58px;
        height:58px;
        font-size:25px;
    }


    /* ==========================
       FINAL CTA MOBILE
    ========================== */

    .health-final-cta{
        padding:65px 0;
    }

    .health-final-cta-box{
        display:block;
        padding:38px 22px;
        border-radius:15px;
        text-align:center;
    }

    .health-final-cta-content{
        max-width:100%;
    }

    .health-final-cta-content h2{
        font-size:29px;
        line-height:1.25;
    }

    .health-final-cta-content p{
        font-size:15px;
        line-height:1.7;
    }

    .health-final-cta-button{
        margin-top:28px;
    }


    /* ==========================
       FAQ MOBILE
    ========================== */

    .health-faq-section{
        padding:70px 0;
    }

    .health-faq-wrapper{
        width:100%;
    }

    .health-faq-item{
        margin-bottom:12px;
        border-radius:10px;
    }

    .health-faq-question{
        min-height:68px;
        gap:15px;
        padding:17px 16px;
        font-size:15px;
        line-height:1.45;
    }

    .health-faq-icon{
        width:34px;
        height:34px;
        min-width:34px;
        font-size:21px;
    }

    .health-faq-answer p{
        padding:0 16px 20px;
        font-size:14px;
        line-height:1.7;
    }

    .health-faq-link{
        margin:0 16px 20px;
        font-size:14px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .health-container{
        padding-left:16px;
        padding-right:16px;
    }

    .health-hero-content h1{
        font-size:34px;
    }

    .health-feature-content h2,
    .health-section-heading h2{
        font-size:28px;
    }

    .health-hero-image img,
    .health-feature-image img{
        height:260px;
    }

    .health-service-image{
        height:200px;
    }

    .health-process-cta h3{
        font-size:23px;
    }

    .health-final-cta-content h2{
        font-size:27px;
    }

}


/* =====================================================
   ACCESSIBILITY / REDUCED MOTION
===================================================== */

@media(prefers-reduced-motion:reduce){

    .health-btn,
    .health-service-card,
    .health-service-image img,
    .health-process-card,
    .health-benefit-card,
    .health-comprehensive-card,
    .health-faq-answer{
        transition:none;
    }

}