*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f4f4f4;
    color:#333;
}

.hero{
    position:relative;
    min-height:100vh;
    background:url('../img/hero.jpg') center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#33882e;
    max-width:700px;
}

.logo{
    width:120px;
    margin-bottom:20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:15px;
}

.hero p{
    font-size:20px;
    margin-bottom:25px;
}

.hero-benefits{
    margin-bottom:30px;
}

.hero-benefits div{
    margin-bottom:10px;
}

.cta-btn{
    display:inline-block;
    background:#f5b400;
    color:#000;
    padding:15px 25px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
}

.section{
    padding:70px 20px;
}

.white{
    background:#fff;
}

.gray{
    background:#f7f7f7;
}

.container{
    max-width:1100px;
    margin:auto;
}

h2{
    font-size:36px;
    margin-bottom:30px;
    text-align:center;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 0 10px rgba(0,0,0,0.08);
}

.card h3{
    margin-bottom:15px;
}

.plan-table{
    overflow-x:auto;
}

.plan-table table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
}

.plan-table th,
.plan-table td{
    padding:15px;
    border:1px solid #ddd;
    text-align:center;
}

.plan-table th{
    background:#007bff;
    color:#fff;
}

.small-note{
    margin-top:15px;
    text-align:center;
}

.advisor-box{
    text-align:center;
}

.advisor-photo{
    width:200px;
    height:200px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

.form-container{
    max-width:600px;
}

.lead-form input{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:10px;
}

.lead-form button{
    width:100%;
    padding:16px;
    border:none;
    background:#007bff;
    color:#fff;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
}

.faq-item{
    margin-bottom:25px;
}

.footer-cta{
    background:#111;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.footer-cta h2{
    margin-bottom:25px;
}

.thankyou-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.thankyou-box{
    background:#fff;
    padding:40px;
    border-radius:12px;
    text-align:center;
    max-width:500px;
}

@media(max-width:768px){

    .hero h1{
        font-size:34px;
    }

    h2{
        font-size:28px;
    }

}