/* ================= GLOBAL ================= */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    line-height:1.7;
    overflow-x:hidden;
    background:#f5fcff;
}

:root{
    --aqua:#00bcd4;
    --light:#dff7ff;
    --dark:#340e71;
}

a{
    text-decoration:none;
}

.container{
    width:80%;
    margin:auto;
}

/* ================= HERO ================= */

.child-hero{
    width:100%;
    min-height:65vh;
    background:
    linear-gradient(rgba(0,77,102,0.65), rgba(0,77,102,0.65)),
    url('https://images.unsplash.com/photo-1516627145497-ae6968895b74?q=80&w=1600');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.hero-content{
    width:60%;
    color:#fff;
}

.hero-content span{
    letter-spacing:2px;
    font-size:15px;
    font-weight:600;
    color:#7eefff;
}

.hero-content h1{
    font-size:65px;
    line-height:1.2;
    margin:20px 0;
}

.hero-content p{
    font-size:18px;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    background:#ea3c01;
    color:#fff;
    padding:15px 38px;
    font-weight:bold;
    transition:0.3s;
}

.hero-btn:hover{
    background:#0097a7;
}

/* ================= SECTION TITLE ================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#ea3c01;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.section-title h2{
    font-size:46px;
    color:var(--dark);
    margin:15px 0;
}

.section-title p{
    color:#666;
}

/* ================= ABOUT ================= */

.about-child{
    padding:90px 0;
}

.about-flex{
    display:flex;
    gap:60px;
    align-items:center;
}

.about-image{
    width:45%;
}

.about-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.about-content{
    width:55%;
}

.about-content h2{
    font-size:44px;
    color:var(--dark);
    margin-bottom:25px;
}

.about-content p{
    color:#555;
    margin-bottom:20px;
}

/* ================= BENEFITS ================= */

.benefits{
    padding:90px 0;
    background:#fff;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.benefit-box{
    background:#f4f7fb;
    padding:35px 25px;
    text-align:center;
    transition:0.4s;
}

.benefit-box:hover{
    transform:translateY(-10px);
    background:#c9f2ff;
}

.benefit-box i{
    width:80px;
    height:80px;
    background:#ea3c01;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:32px;
    margin-bottom:25px;
}

.benefit-box h3{
    color:var(--dark);
    margin-bottom:15px;
}

/* ================= CHOOSE PLAN ================= */

.choose-plan{
    padding:90px 0;
}

.choose-flex{
    display:flex;
    gap:50px;
    align-items:center;
}

.choose-content{
    width:55%;
}

.choose-content h2{
    font-size:44px;
    color:var(--dark);
    margin-bottom:25px;
}

.choose-list{
    margin-top:30px;
}

.choose-list li{
    list-style:none;
    margin-bottom:18px;
    color:#555;
    font-size:17px;
}

.choose-list li i{
    color:#ea3c01;
    margin-right:10px;
}

.choose-image{
    width:45%;
}

.choose-image img{
    width:100%;
    height:550px;
    object-fit:cover;
}

/* ================= EDUCATION ================= */

.education-section{
    padding:90px 0;
    background:#fff;
}

.education-box{
    background:#340e71;
    padding:70px;
    color:#fff;
    text-align:center;
}

.education-box h2{
    font-size:50px;
    margin-bottom:20px;
}

.education-box p{
    width:75%;
    margin:auto;
    line-height:1.9;
    margin-bottom:35px;
}

.education-btn{
    display:inline-block;
    background:#fff;
    color:var(--dark);
    padding:15px 35px;
    font-weight:bold;
}

/* ================= FAQ ================= */

.faq{
    padding:90px 0;
}

.faq-box{
    background:#fff;
    padding:25px 30px;
    margin-bottom:20px;
    border-left:#ea3c01;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.faq-box h3{
    color:var(--dark);
    margin-bottom:12px;
}

.faq-box p{
    color:#666;
}

/* ================= CTA ================= */

.cta-section{
    padding:90px 0;
    background:
    linear-gradient(rgba(0,188,212,0.9), rgba(0,188,212,0.9)),
    url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?q=80&w=1600');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.cta-section h2{
    font-size:52px;
    margin-bottom:20px;
}

.cta-section p{
    width:70%;
    margin:auto;
    margin-bottom:35px;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:var(--dark);
    padding:16px 40px;
    font-weight:bold;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .benefit-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .container{
        width:92%;
    }

    .hero-content{
        width:100%;
        text-align:center;
    }

    .hero-content h1{
        font-size:40px;
    }

    .about-flex,
    .choose-flex{
        flex-direction:column;
    }

    .about-image,
    .about-content,
    .choose-content,
    .choose-image{
        width:100%;
    }

    .about-image img,
    .choose-image img{
        height:350px;
    }

    .section-title h2,
    .about-content h2,
    .choose-content h2,
    .education-box h2,
    .cta-section h2{
        font-size:34px;
    }

    .benefit-grid{
        grid-template-columns:1fr;
    }

    .education-box{
        padding:40px 25px;
    }

    .education-box p,
    .cta-section p{
        width:100%;
    }

}

.container{
    width:80%;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#00bcd4;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:44px;
    color:#340e71;
    margin:15px 0;
}

.section-title p{
    color:#666;
}

/* ================= MILESTONE ================= */

.milestone-section{
    padding:90px 0;
    background:#fff;
}

.milestone-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.milestone-box{
    background:#dff7ff;
    padding:40px 25px;
    text-align:center;
    transition:0.4s;
}

.milestone-box:hover{
    transform:translateY(-10px);
}

.milestone-age{
    width:90px;
    height:90px;
    background:#ea3c01;
    color:#fff;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
    font-size:22px;
    margin-bottom:25px;
}

.milestone-box h3{
    color:#340e71;
    margin-bottom:15px;
}

/* ================= INFLATION ================= */

.inflation-section{
    padding:90px 0;
    background:#f5fcff;
}

.inflation-table{
    overflow-x:auto;
}

.inflation-table table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
}

.inflation-table th{
    background:#ea3c01;
    color:#fff;
    padding:18px;
}

.inflation-table td{
    padding:18px;
    border-bottom:1px solid #eee;
}

/* ================= EARLY ================= */

.early-section{
    padding:90px 0;
}

.early-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.early-box{
    background:#fff;
    text-align:center;
    padding:40px 20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.early-box i{
    font-size:45px;
    color:#ea3c01;
    margin-bottom:20px;
}

.early-box h3{
    color:#340e71;
}

/* ================= DREAM ================= */

.dream-section{
    padding:90px 0;
    background:#fff;
}

.dream-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.dream-box{
    overflow:hidden;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.dream-box img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.dream-box h3{
    text-align:center;
    padding:18px;
    color:#340e71;
}

/* ================= PROTECTION ================= */

.protection-section{
    padding:90px 0;
}

.protection-flex{
    display:flex;
    gap:50px;
    align-items:center;
}

.protection-image,
.protection-content{
    width:50%;
}

.protection-image img{
    width:100%;
    height:550px;
    object-fit:cover;
}

.protection-content span{
    color:#00bcd4;
    font-weight:700;
}

.protection-content h2{
    font-size:44px;
    color:#340e71;
    margin:20px 0;
}

.protection-content p{
    color:#555;
    margin-bottom:25px;
}

.protection-content ul{
    list-style:none;
}

.protection-content ul li{
    margin-bottom:18px;
    color:#555;
}

/* ================= CALCULATOR CTA ================= */

.calculator-cta{
    padding:90px 0;
    background:#340e71;
    text-align:center;
    color:#fff;
}

.calculator-cta h2{
    font-size:48px;
    margin-bottom:20px;
}

.calculator-cta p{
    margin-bottom:30px;
}

.calculator-cta a{
    display:inline-block;
    background:#fff;
    color:#340e71;
    padding:15px 35px;
    font-weight:bold;
}

/* ================= TESTIMONIAL ================= */

.child-testimonial{
    padding:90px 0;
    background:#fff;
}

.testimonial-box{
    background:#dff7ff;
    padding:60px;
    text-align:center;
}

.testimonial-box p{
    font-size:24px;
    line-height:1.8;
    color:#340e71;
    margin-bottom:20px;
}

.testimonial-box h3{
    color:#00bcd4;
}

/* ================= DOCUMENT ================= */

.document-section{
    padding:90px 0;
}

.document-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.document-box{
    background:#fff;
    padding:30px 20px;
    text-align:center;
    font-weight:bold;
    color:#340e71;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* ================= LIC PLANS ================= */

.lic-child-plans{
    padding:90px 0;
    background:#fff;
}

.lic-plan-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.lic-plan-box{
    background:#dff7ff;
    padding:40px 25px;
    text-align:center;
}

.lic-plan-box h3{
    color:#340e71;
    margin-bottom:25px;
}

.lic-plan-box a{
    display:inline-block;
    background:#ea3c01;
    color:#fff;
    padding:12px 28px;
}

/* ================= FINAL CTA ================= */

.final-child-cta{
    padding:100px 0;
    background:linear-gradient(rgba(0,77,102,0.9),rgba(0,77,102,0.9)),
    url('https://images.unsplash.com/photo-1516627145497-ae6968895b74?q=80&w=1600');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.final-child-cta h2{
    font-size:52px;
    margin-bottom:20px;
}

.final-child-cta p{
    width:70%;
    margin:auto;
    margin-bottom:35px;
}

.final-btns{
    display:flex;
    justify-content:center;
    gap:20px;
}

.final-btns a{
    display:inline-block;
    background:#ea3c01;
    color:#fff;
    padding:15px 35px;
    font-weight:bold;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .milestone-grid,
    .early-grid,
    .dream-grid,
    .lic-plan-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .document-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .container{
        width:92%;
    }

    .section-title h2,
    .calculator-cta h2,
    .final-child-cta h2,
    .protection-content h2{
        font-size:34px;
    }

    .milestone-grid,
    .early-grid,
    .dream-grid,
    .document-grid,
    .lic-plan-grid{
        grid-template-columns:1fr;
    }

    .protection-flex{
        flex-direction:column;
    }

    .protection-image,
    .protection-content{
        width:100%;
    }

    .protection-image img{
        height:350px;
    }

    .testimonial-box{
        padding:35px 25px;
    }

    .testimonial-box p{
        font-size:18px;
    }

    .final-child-cta p{
        width:100%;
    }

    .final-btns{
        flex-direction:column;
        align-items:center;
    }

}