body{
margin:0;
font-family:Arial;
background:#f9f9f9;
color:#333;
}


header{
background:white;
padding:15px 0;
box-shadow:0 2px 5px rgba(0,0,0,0.1);
}


.container{
width:90%;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}


.logo{
color:#060606;
}


nav a{
margin-left:20px;
text-decoration:none;
color:#333;
font-weight:bold;
}


.hero{
text-align:center;
padding:100px 20px;
background:#e8f7ef;
}


.hero h2{
font-size:40px;
}


.buy-btn{
padding:12px 25px;
background:#2a7a4b;
color:white;
border:none;
font-size:16px;
cursor:pointer;
border-radius:5px;
}


.products{
padding:60px 20px;
text-align:center;
}


.product-grid{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}


.product-card{
background:white;
padding:20px;
width:250px;
box-shadow:0 3px 8px rgba(0,0,0,0.1);
border-radius:10px;
}


.product-card img{
width:100%;
border-radius:8px;
}


.product-card button{
margin-top:10px;
padding:10px 20px;
background:#2a7a4b;
color:white;
border:none;
cursor:pointer;
border-radius:5px;
}


.about{
padding:60px;
background:#fff;
text-align:center;
}


.about ul{
list-style:none;
padding:0;
}


.about li{
margin:10px 0;
font-size:18px;
}


footer{
background:#2a7a4b;
color:white;
text-align:center;
padding:20px;
}