*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#f5f9fc;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   HERO BANNER
========================= */

.general-hero{
   height:50vh;
    min-height:700px;
    background-image:url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1400&auto=format&fit=crop');
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.60);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    width:90%;
    max-width:900px;
    color:#fff;
}

.hero-content h1{
    font-size:70px;
    margin-bottom:20px;
    font-weight:700;
    line-height:1.2;
}

.hero-content p{
    font-size:24px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    padding:16px 40px;
    background:linear-gradient(45deg,#00b4db,#0077b6);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    transition:0.4s;
}

.hero-btn:hover{
    background:linear-gradient(45deg,#0077b6,#340e71);
    transform:translateY(-5px);
}

/* =========================
   INTRO SECTION
========================= */

.general-intro{
    padding:100px 0;
}

.general-intro .container{
    display:flex;
    gap:50px;
    align-items:center;
}

.intro-left,
.intro-right{
    flex:1;
}

.intro-left img{
    width:100%;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.intro-right h2{
    font-size:45px;
    margin-bottom:25px;
    color:#340e71;
}

.intro-right p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:45px;
    color:#340e71;
    margin-bottom:15px;
}

.section-title p{
    font-size:18px;
    color:#666;
}

/* =========================
   IMPORTANCE SECTION
========================= */

.importance-section{
    padding:100px 5%;
    background:#eef8fd;
}

.importance-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.importance-box{
    background:#fff;
    padding:40px 25px;
    border-radius:25px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}

.importance-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#AECD53;
}

.importance-box:hover{
    transform:translateY(-10px);
}

.icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#AECD53;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
}

.icon i{
    font-size:38px;
    color:#fff;
}

.importance-box h3{
    font-size:22px;
    margin-bottom:15px;
    color:#340e71;
    line-height:1.4;
}

.importance-box p{
    font-size:15px;
    line-height:1.8;
    color:#555;
}

/* =========================
   PLANS SECTION
========================= */

.plans-section{
    padding:100px 5%;
}

.plans-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.plan-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.plan-card:hover{
    transform:translateY(-10px);
}

.plan-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.plan-card h3{
    padding:25px 25px 10px;
    font-size:24px;
    color:#340e71;
}

.plan-card p{
    padding:0 25px 30px;
    line-height:1.8;
    color:#555;
}

/* =========================
   BENEFITS SECTION
========================= */

.benefits-section{
    padding:100px 5%;
    background:#eef8fd;
}

.benefits-content{
    display:flex;
    gap:50px;
    align-items:center;
}

.benefits-left,
.benefits-right{
    flex:1;
}

.benefits-right img{
    width:100%;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.benefits-left h2{
    font-size:45px;
    margin-bottom:30px;
    color:#340e71;
}

.benefits-left ul{
    list-style:none;
}

.benefits-left ul li{
    font-size:18px;
    margin-bottom:18px;
    color:#444;
    line-height:1.8;
}

.benefits-left ul li i{
    color:#00b4db;
    margin-right:10px;
}

/* =========================
   CTA SECTION
========================= */

.general-cta{
    padding:120px 20px;
    text-align:center;
    background:#AECD53;
    color:#fff;
}

.general-cta h2{
    font-size:55px;
    margin-bottom:20px;
}

.general-cta p{
    font-size:22px;
    margin-bottom:35px;
    line-height:1.8;
}

.general-cta a{
    display:inline-block;
    padding:16px 40px;
    background:#fff;
    color:#0077b6;
    text-decoration:none;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    transition:0.4s;
}

.general-cta a:hover{
    transform:translateY(-5px);
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

    .importance-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .plans-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .general-intro .container,
    .benefits-content{
        flex-direction:column;
    }

    .hero-content h1{
        font-size:52px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .general-hero{
        min-height:500px;
        background-position:center;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:17px;
        line-height:1.7;
    }

    .hero-btn{
        padding:14px 30px;
        font-size:16px;
    }

    .importance-grid,
    .plans-grid{
        grid-template-columns:1fr;
    }

    .intro-right h2,
    .section-title h2,
    .benefits-left h2,
    .general-cta h2{
        font-size:32px;
    }

    .intro-right p,
    .benefits-left ul li{
        font-size:16px;
    }

    .general-cta p{
        font-size:18px;
    }

    .importance-box,
    .plan-card{
        border-radius:20px;
    }

}
/*============================*/

.faq-section{
padding:80px 20px;
}

.container{
max-width:1100px;
margin:auto;
}

.section-title{
text-align:center;
margin-bottom:15px;
color:#340e71;
font-size:40px;
font-weight:700;
}

.section-title span{
color:#AECD53;
}

.section-subtitle{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:50px;
color:#666;
font-size:18px;
line-height:30px;
}

/*============================*/

.faq-box{
display:flex;
gap:40px;
align-items:flex-start;
}

.left{
flex:1;
}

.right{
flex:1;
}

/*============================*/

.faq-item{

background:#fff;
border-radius:12px;
margin-bottom:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
border-left:5px solid #AECD53;

}

.faq-item:hover{

transform:translateY(-4px);

}

.faq-question{

padding:22px 25px;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
font-size:18px;
font-weight:600;
color:#340e71;

}

.icon{

width:35px;
height:35px;
border-radius:50%;
background:#340e71;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
transition:.4s;

}

.faq-answer{

max-height:0;
overflow:hidden;
transition:max-height .5s ease;
background:#fafafa;

}

.faq-answer p{

padding:0 25px 22px;
line-height:28px;
color:#555;
font-size:16px;

}

.faq-item.active{

border-left:5px solid #340e71;

}

.faq-item.active .icon{

background:#AECD53;
transform:rotate(45deg);

}

/*==============================*/

.info-card{

background:linear-gradient(135deg,#340e71,#49597c);
padding:40px;
border-radius:20px;
color:#fff;
position:sticky;
top:20px;

}

.info-card h3{

font-size:32px;
margin-bottom:20px;

}

.info-card p{

line-height:30px;
margin-bottom:30px;
opacity:.9;

}

.call-btn{

display:inline-block;
padding:16px 35px;
background:#AECD53;
color:#fff;
text-decoration:none;
font-weight:bold;
border-radius:40px;
transition:.4s;

}

.call-btn:hover{

background:#fff;
color:#340e71;

}

/*============================*/

@media(max-width:991px){

.faq-box{

flex-direction:column;

}

.section-title{

font-size:32px;

}

}

@media(max-width:600px){

.section-title{

font-size:28px;

}

.section-subtitle{

font-size:16px;
line-height:28px;

}

.faq-question{

font-size:16px;
padding:18px;

}

.info-card{

padding:25px;

}

.info-card h3{

font-size:26px;

}

}