*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#eef3f4;
    color:#064e3b;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

.navbar{
    display:flex;
    justify-content:space-between;
    padding:20px;
    background:white;
}

.logo{
    font-size:22px;
    font-weight:bold;
}

.menu{
    font-size:24px;
    cursor:pointer;
}

.hero{
    text-align:center;
    padding:80px 20px;
}

.badge{
    display:inline-block;
    background:#d4e8b3;
    padding:8px 18px;
    border-radius:20px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:bold;
}

.hero h1{
    font-size:40px;
    margin-bottom:20px;
}

.hero p{
    max-width:600px;
    margin:auto;
    margin-bottom:25px;
}

.btn{
    background:#064e3b;
    color:white;
    padding:12px 25px;
    text-decoration:none;
    border-radius:6px;
}

.about{
    padding:60px 20px;
    background:white;
}

.flex{
    display:flex;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.image img{
    width:100%;
    max-width:400px;
    border-radius:10px;
}

.services{
    padding:60px 20px;
    text-align:center;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    margin-top:30px;
}

.service-grid div{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.contact{
    padding:60px 20px;
    text-align:center;
    background:white;
}

footer{
    background:#064e3b;
    color:white;
    text-align:center;
    padding:15px;
}
