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

html{
scroll-behavior:smooth;
}

body{
background:#f7fff4;
color:#222;
overflow-x:hidden;
}

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

header{
position:fixed;
top:0;
width:100%;
z-index:999;
backdrop-filter:blur(20px);
background:rgba(255,255,255,.75);
border-bottom:1px solid rgba(255,255,255,.3);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
height:80px;
}

.logo{
font-size:22px;
font-weight:700;
color:#5ea93c;
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
}

.btn-primary{
background:#8dd66a;
padding:14px 28px;
border-radius:50px;
text-decoration:none;
color:white;
font-weight:600;
box-shadow:0 10px 25px rgba(141,214,106,.35);
}

.btn-secondary{
padding:14px 28px;
border-radius:50px;
border:1px solid #ddd;
text-decoration:none;
color:#333;
}

.hero{
padding-top:140px;
padding-bottom:100px;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
}

.badge{
display:inline-block;
padding:10px 18px;
background:white;
border-radius:999px;
font-size:14px;
margin-bottom:20px;
}

.hero h1{
font-size:64px;
line-height:1.1;
margin-bottom:20px;
}

.hero p{
font-size:18px;
color:#666;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
margin-bottom:40px;
}

.hero-image img{
width:100%;
animation:float 5s ease infinite;
}

.stats{
display:flex;
gap:40px;
}

.stats h3{
color:#67b646;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
color:#67b646;
font-weight:600;
}

.section-title h2{
font-size:42px;
margin-top:10px;
}

.benefits{
padding:100px 0;
}

.benefit-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.card{
background:rgba(255,255,255,.65);
backdrop-filter:blur(20px);
padding:35px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.icon{
font-size:42px;
margin-bottom:20px;
}

.menu{
padding:100px 0;
background:white;
}

.menu-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.menu-card{
background:white;
border-radius:24px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.06);
transition:.3s;
}

.menu-card:hover{
transform:translateY(-10px);
}

.menu-card img{
width:100%;
height:250px;
object-fit:cover;
}

.menu-card h3,
.menu-card p{
padding:0 20px;
}

.menu-card h3{
margin-top:20px;
}

.menu-card p{
padding-bottom:25px;
color:#67b646;
font-weight:600;
}

.about{
padding:120px 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about img{
width:100%;
border-radius:24px;
}

.about-label{
color:#67b646;
font-weight:600;
}

.about h2{
font-size:48px;
margin:15px 0;
}

.about p{
color:#666;
margin-bottom:20px;
line-height:1.8;
}

.cta{
padding:120px 0;
background:linear-gradient(
135deg,
#8dd66a,
#6fcf97
);
color:white;
text-align:center;
}

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

.cta p{
margin-bottom:35px;
}

.btn-white{
background:white;
color:#67b646;
padding:15px 30px;
border-radius:50px;
text-decoration:none;
font-weight:600;
}

footer{
padding:50px 0;
text-align:center;
background:#fff;
}

@keyframes float{
0%,100%{
transform:translateY(0);
}
50%{
transform:translateY(-15px);
}
}

@media(max-width:991px){

.hero-grid,
.about-grid,
.benefit-grid,
.menu-grid{
grid-template-columns:1fr;
}

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

nav{
display:none;
}

.stats{
flex-direction:column;
gap:15px;
}

}
