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

body{
background:#f4fff3;
color:#222;
}

.hero{
background:linear-gradient(135deg,#0f9d58,#2ecc71);
color:white;
text-align:center;
padding:60px 20px;
}

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

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

.btn{
display:inline-block;
padding:12px 25px;
background:white;
color:#0f9d58;
text-decoration:none;
font-weight:bold;
border-radius:30px;
}

.categories,
#products{
padding:40px 20px;
}

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

.card,
.product{
background:white;
border-radius:15px;
padding:20px;
text-align:center;
box-shadow:0 8
