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

body{
    background:#f4fff7;
    color:#1b1b1b;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.hero{
    position:relative;
    min-height:100vh;
    background:linear-gradient(135deg,#008f4c,#00b060,#006f3d);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.25);
    top:0;
    left:0;
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
}

.hero h1{
    font-size:4rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.3rem;
    max-width:850px;
    margin:auto;
}

.buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn{
    padding:16px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.primary{
    background:white;
    color:#008f4c;
}

.primary:hover{
    transform:translateY(-3px);
}

.secondary{
    border:2px solid white;
    color:white;
}

.secondary:hover{
    background:white;
    color:#008f4c;
}

.notice{
    margin-top:40px;
    background:rgba(255,255,255,0.15);
    padding:18px;
    border-radius:12px;
}

.services{
    padding:90px 0;
}

.services h2{
    text-align:center;
    margin-bottom:50px;
    font-size:2.7rem;
    color:#008f4c;
}

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

.card{
    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.card h3{
    color:#008f4c;
    margin-bottom:20px;
    font-size:1.5rem;
}

.card p{
    margin-bottom:25px;
}

.card a{
    display:inline-block;
    background:#008f4c;
    color:white;
    text-decoration:none;
    padding:14px 22px;
    border-radius:10px;
}

.about{
    padding:90px 0;
    background:white;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
    align-items:center;
}

.about h2{
    color:#008f4c;
    margin-bottom:25px;
    font-size:2.5rem;
}

.about p{
    margin-bottom:20px;
}

.about ul{
    list-style:none;
    margin-top:20px;
}

.about li{
    margin-bottom:10px;
}

.box-highlight{
    background:linear-gradient(135deg,#008f4c,#00b060);
    color:white;
    padding:40px;
    border-radius:20px;
    text-align:center;
}

.box-highlight h3{
    font-size:2rem;
    margin-bottom:20px;
}

.cta{
    background:#008f4c;
    color:white;
    text-align:center;
    padding:90px 20px;
}

.cta h2{
    font-size:3rem;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:35px;
    font-size:1.2rem;
}

.white{
    background:white;
    color:#008f4c;
}

footer{
    background:#004d2a;
    color:white;
    text-align:center;
    padding:35px 20px;
}

@media(max-width:768px){

    .hero h1{
        font-size:2.6rem;
    }

    .hero p{
        font-size:1rem;
    }

    .cta h2{
        font-size:2rem;
    }

}
