/* ================= 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;
}

.container{
    width:80%;
    margin:auto;
}

a{
    text-decoration:none;
}

/* ================= SECTION TITLE ================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#ea3c01;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:46px;
    color:var(--dark);
    margin:15px 0;
}

.section-title p{
    color:#666;
}

/* ================= HERO ================= */

.term-hero{
    width:100%;
    min-height:65vh;
    background:
    linear-gradient(rgba(0,77,102,0.75), rgba(0,77,102,0.75)),
    url('../images/term.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.term-hero-content{
    width:60%;
    color:#fff;
}

.term-hero-content span{
    color:#7eefff;
    letter-spacing:2px;
    font-weight:700;
}

.term-hero-content h1{
    font-size:65px;
    line-height:1.2;
    margin:20px 0;
}

.term-hero-content p{
    font-size:18px;
    margin-bottom:35px;
}

.term-btn{
    display:inline-block;
    background:#ea3c01;
    color:#fff;
    padding:15px 35px;
    font-weight:bold;
    transition:0.3s;
}

.term-btn:hover{
    background:#0097a7;
}

/* ================= ABOUT ================= */

.term-about{
    padding:90px 0;
}

.term-flex{
    display:flex;
    gap:60px;
    align-items:center;
}

.term-image,
.term-content{
    width:50%;
}

.term-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.term-content span{
    color:#ea3c01;
    font-weight:700;
}

.term-content h2{
    font-size:46px;
    color:var(--dark);
    margin:20px 0;
}

.term-content p{
    color:#555;
    margin-bottom:20px;
}

/* ================= BENEFITS ================= */

.term-benefits{
    padding:90px 0;
    background:#fff;
}

.term-benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.term-benefit-box{
    background:#fff;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
}

.term-benefit-box:hover{
    transform:translateY(-10px);
}

.term-benefit-box i{
    width:85px;
    height:85px;
    background:#ea3c01;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:34px;
    margin-bottom:25px;
}

.term-benefit-box h3{
    color:var(--dark);
    margin-bottom:15px;
}

/* ================= STAGE ================= */

.term-stage{
    padding:90px 0;
}

.term-stage-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.term-stage-box{
    background:var(--light);
    padding:40px 25px;
    text-align:center;
    transition:0.4s;
}

.term-stage-box:hover{
    transform:translateY(-10px);
}

.stage-age{
    width:100px;
    height:100px;
    background:#ea3c01;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:25px;
    font-size:22px;
    font-weight:bold;
}

.term-stage-box h3{
    color:var(--dark);
    margin-bottom:15px;
}

/* ================= EARLY ================= */

.term-early{
    padding:90px 0;
    background:#fff;
}

.term-early-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.term-early-box{
    background:#fff;
    padding:40px 20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.term-early-box i{
    font-size:45px;
    color:#ea3c01;
    margin-bottom:20px;
}

.term-early-box h3{
    color:var(--dark);
}

/* ================= FAMILY DREAM ================= */

.term-family-dream{
    padding:90px 0;
}

.term-dream-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.term-dream-box{
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    background:#fff;
}

.term-dream-box img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.5s;
}

.term-dream-box:hover img{
    transform:scale(1.08);
}

.term-dream-box h3{
    text-align:center;
    padding:20px;
    color:var(--dark);
}

/* ================= CALCULATOR ================= */

.term-calculator{
    padding:100px 0;
    background:#340e71;
    text-align:center;
    color:#fff;
}

.term-calculator h2{
    font-size:50px;
    margin-bottom:20px;
}

.term-calculator p{
    width:70%;
    margin:auto;
    margin-bottom:35px;
}

.term-calculator a{
    display:inline-block;
    background:#fff;
    color:var(--dark);
    padding:15px 35px;
    font-weight:bold;
}

/* ================= FAQ ================= */

.term-faq{
    padding:90px 0;
    background:#fff;
}

.term-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);
}

.term-faq-box h3{
    color:var(--dark);
    margin-bottom:12px;
}

.term-faq-box p{
    color:#666;
}

/* ================= TESTIMONIAL ================= */

.term-testimonial{
    padding:90px 0;
}

.term-testimonial-box{
    background:var(--light);
    padding:60px;
    text-align:center;
}

.term-testimonial-box p{
    font-size:24px;
    line-height:1.8;
    color:var(--dark);
    margin-bottom:20px;
}

.term-testimonial-box h3{
    color:#ea3c01;
}

/* ================= DOCUMENTS ================= */

.term-documents{
    padding:90px 0;
    background:#fff;
}

.term-document-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.term-document-box{
    background:#fff;
    padding:30px 20px;
    text-align:center;
    color:var(--dark);
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* ================= PLANS ================= */

.term-plans{
    padding:90px 0;
}

.term-plan-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.term-plan-box{
    background:var(--light);
    padding:40px 25px;
    text-align:center;
}

.term-plan-box h3{
    color:var(--dark);
    margin-bottom:25px;
}

.term-plan-box a{
    display:inline-block;
    background:#ea3c01;
    color:#fff;
    padding:12px 28px;
}

/* ================= FINAL CTA ================= */

.term-final-cta{
    padding:100px 0;
    background:
    linear-gradient(rgba(0,77,102,0.90), rgba(0,77,102,0.90)),
    url('../img/term-final-banner.jpg');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.term-final-cta h2{
    font-size:52px;
    margin-bottom:20px;
}

.term-final-cta p{
    width:70%;
    margin:auto;
    margin-bottom:35px;
}

.term-final-btns{
    display:flex;
    justify-content:center;
    gap:20px;
}

.term-final-btns a{
    display:inline-block;
    background:#ea3c01;
    color:#fff;
    padding:15px 35px;
    font-weight:bold;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .term-benefit-grid,
    .term-stage-grid,
    .term-early-grid,
    .term-dream-grid,
    .term-plan-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .term-document-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .container{
        width:92%;
    }

    .term-hero-content{
        width:100%;
        text-align:center;
    }

    .term-hero-content h1{
        font-size:40px;
    }

    .term-flex{
        flex-direction:column;
    }

    .term-image,
    .term-content{
        width:100%;
    }

    .term-image img{
        height:350px;
    }

    .section-title h2,
    .term-content h2,
    .term-calculator h2,
    .term-final-cta h2{
        font-size:34px;
    }

    .term-benefit-grid,
    .term-stage-grid,
    .term-early-grid,
    .term-dream-grid,
    .term-document-grid,
    .term-plan-grid{
        grid-template-columns:1fr;
    }

    .term-calculator p,
    .term-final-cta p{
        width:100%;
    }

    .term-testimonial-box{
        padding:35px 25px;
    }

    .term-testimonial-box p{
        font-size:18px;
    }

    .term-final-btns{
        flex-direction:column;
        align-items:center;
    }

}