/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    line-height:1.7;
    background:#f5fcff;
    overflow-x:hidden;
}

:root{
    --aqua:#00bcd4;
    --light:#dff7ff;
    --dark:#340e71;
}

.container{
    width:80%;
    margin:auto;
}

a{
    text-decoration:none;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#ea3c01;
    font-size:14px;
    font-weight:bold;
    letter-spacing:2px;
}

.section-title h2{
    font-size:46px;
    color:var(--dark);
    margin-top:15px;
}

/* ================= HERO ================= */

.health-hero{
    width:100%;
    min-height:65vh;
    background:
    linear-gradient(rgba(0,77,102,0.75), rgba(0,77,102,0.75)),
    url('../images/health_banner.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.health-hero-content{
    width:60%;
    color:#fff;
}

.health-hero-content span{
    color:#7eefff;
    letter-spacing:2px;
    font-weight:bold;
}

.health-hero-content h1{
    font-size:65px;
    line-height:1.2;
    margin:20px 0;
}

.health-hero-content p{
    margin-bottom:35px;
    font-size:18px;
}

.health-btn{
    display:inline-block;
    background:#ea3c01;
    color:#fff;
    padding:15px 35px;
    font-weight:bold;
}

/* ================= ABOUT ================= */

.health-about{
    padding:90px 0;
}

.health-flex{
    display:flex;
    gap:60px;
    align-items:center;
}

.health-image,
.health-content{
    width:50%;
}

.health-image img{
    width:100%;
    height:550px;
    object-fit:cover;
}

.health-content span{
    color:#ea3c01;
    font-weight:bold;
}

.health-content h2{
    font-size:46px;
    color:var(--dark);
    margin:20px 0;
}

.health-content p{
    color:#555;
    margin-bottom:20px;
}

/* ================= BENEFITS ================= */

.health-benefits{
    padding:90px 0;
    background:#fff;
}

.health-benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.health-benefit-box{
    background:#fff;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.health-benefit-box i{
    font-size:45px;
    color:#ea3c01;
    margin-bottom:20px;
}

.health-benefit-box h3{
    color:var(--dark);
    margin-bottom:15px;
}

/* ================= COVERAGE ================= */

.health-coverage{
    padding:90px 0;
}

.coverage-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.coverage-box{
    background:var(--light);
    padding:35px;
    text-align:center;
    font-weight:bold;
    color:var(--dark);
}

/* ================= EARLY ================= */

.health-early{
    padding:90px 0;
    background:#fff;
}

.health-early-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.health-early-box{
    background:#fff;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.health-early-box i{
    font-size:45px;
    color:#ea3c01;
    margin-bottom:20px;
}

/* ================= PLANS ================= */

.health-plans{
    padding:90px 0;
}

.health-plan-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.health-plan-box{
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.health-plan-box img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.health-plan-box h3{
    color:var(--dark);
    padding:20px 20px 10px;
}

.health-plan-box p{
    padding:0 20px 20px;
    color:#555;
}

.health-plan-box a{
    display:inline-block;
    margin:0 20px 25px;
    background:#ea3c01;
    color:#fff;
    padding:12px 25px;
}

/* ================= CLAIM ================= */

.health-claim{
    padding:90px 0;
    background:#fff;
}

.claim-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.claim-box{
    text-align:center;
}

.claim-number{
    width:90px;
    height:90px;
    background:#ea3c01;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:20px;
    font-size:32px;
    font-weight:bold;
}

/* ================= FAQ ================= */

.health-faq{
    padding:90px 0;
}

.health-faq-box{
    background:#fff;
    padding:30px;
    margin-bottom:25px;
    border-left:5px solid #ea3c01;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.health-faq-box h3{
    color:var(--dark);
    margin-bottom:12px;
}

/* ================= TESTIMONIAL ================= */

.health-testimonial{
    padding:90px 0;
    background:#fff;
}

.health-testimonial-box{
    background:var(--light);
    padding:60px;
    text-align:center;
}

.health-testimonial-box p{
    font-size:24px;
    color:var(--dark);
    margin-bottom:20px;
}

.health-testimonial-box h3{
    color:#ea3c01;
}

/* ================= DOCUMENTS ================= */

.health-documents{
    padding:90px 0;
}

.health-document-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.health-document-box{
    background:#fff;
    padding:30px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    color:var(--dark);
    font-weight:bold;
}

/* ================= FINAL CTA ================= */

.health-final-cta{
    padding:100px 0;
    background:
    linear-gradient(rgba(0,77,102,0.90), rgba(0,77,102,0.90)),
    url('../img/health-final.jpg');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.health-final-cta h2{
    font-size:52px;
    margin-bottom:20px;
}

.health-final-cta p{
    width:70%;
    margin:auto;
    margin-bottom:35px;
}

.health-final-btns{
    display:flex;
    justify-content:center;
    gap:20px;
}

.health-final-btns a{
    display:inline-block;
    background:#ea3c01;
    color:#fff;
    padding:15px 35px;
    font-weight:bold;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .health-benefit-grid,
    .coverage-grid,
    .health-early-grid,
    .health-plan-grid,
    .claim-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .health-document-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .container{
        width:92%;
    }

    .health-hero-content{
        width:100%;
        text-align:center;
    }

    .health-hero-content h1{
        font-size:40px;
    }

    .health-flex{
        flex-direction:column;
    }

    .health-image,
    .health-content{
        width:100%;
    }

    .health-image img{
        height:350px;
    }

    .section-title h2,
    .health-content h2,
    .health-final-cta h2{
        font-size:34px;
    }

    .health-benefit-grid,
    .coverage-grid,
    .health-early-grid,
    .health-plan-grid,
    .claim-grid,
    .health-document-grid{
        grid-template-columns:1fr;
    }

    .health-final-cta p{
        width:100%;
    }

    .health-final-btns{
        flex-direction:column;
        align-items:center;
    }

}