
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    line-height:1.7;
    color:#111827;
}

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(4,120,87,.88),rgba(6,78,59,.88)),
    url('https://images.unsplash.com/photo-1565552645632-d725f8bfc19a?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
    color:white;
}

nav{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:20px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-area img{
    width:80px;
    height:80px;
    object-fit:contain;
    background:white;
    border-radius:18px;
    padding:8px;
}

.logo-area h2{
    font-size:24px;
}

.logo-area p{
    color:#e5e7eb;
}

#menu{
    display:flex;
    gap:24px;
    list-style:none;
}

#menu a{
    color:white;
    text-decoration:none;
    font-weight:700;
}

#toggle{
    display:none;
    border:none;
    background:none;
    color:white;
    font-size:28px;
}

.hero-content{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:120px 0;
}

.hero-content h1{
    font-size:60px;
    line-height:1.1;
    max-width:700px;
    margin-bottom:20px;
}

.hero-content p{
    max-width:700px;
    font-size:18px;
    color:#f3f4f6;
}

.btn{
    display:inline-block;
    margin-top:30px;
    background:#facc15;
    color:#064e3b;
    padding:14px 28px;
    border-radius:999px;
    text-decoration:none;
    font-weight:800;
}

.section{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:80px 0;
}

.section h2{
    font-size:42px;
    margin-bottom:20px;
    color:#064e3b;
}

.services{
    background:#f9fafb;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:40px;
}

.card{
    background:white;
    padding:30px;
    border-radius:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.contact-box{
    background:#064e3b;
    color:white;
    padding:35px;
    border-radius:22px;
    margin-top:30px;
}

footer{
    background:#052e26;
    color:#d1d5db;
    text-align:center;
    padding:24px;
}

@media(max-width:900px){

    .cards{
        grid-template-columns:1fr;
    }

    #toggle{
        display:block;
    }

    #menu{
        display:none;
        position:absolute;
        top:90px;
        right:5%;
        background:#064e3b;
        padding:20px;
        border-radius:16px;
        flex-direction:column;
    }

    #menu.show{
        display:flex;
    }

    .hero-content h1{
        font-size:42px;
    }
}
