*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f8f8f8;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#2e7d32;
color:white;
padding:15px 0;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

nav a{
color:white;
text-decoration:none;
margin-left:20px;
}

.hero{
height:80vh;
background:url('../images/farm.jpg') center/cover;
display:flex;
align-items:center;
justify-content:center;
}

.overlay{
background:rgba(0,0,0,.55);
padding:40px;
color:white;
text-align:center;
border-radius:10px;
}

.overlay h2{
font-size:42px;
margin-bottom:10px;
}

.btn{
display:inline-block;
padding:12px 25px;
background:#4caf50;
color:white;
text-decoration:none;
border-radius:5px;
margin-top:15px;
}

.about{
padding:60px 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about img{
width:100%;
border-radius:10px;
}

.video-section{
padding:60px 0;
text-align:center;
}

video{
width:100%;
max-width:800px;
border-radius:10px;
}

.features{
background:white;
padding:60px 0;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:30px;
}

.card{
background:#e8f5e9;
padding:25px;
text-align:center;
border-radius:10px;
}

.products-home{
padding:60px 0;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.product-card{
background:white;
padding:20px;
border-radius:10px;
text-align:center;
box-shadow:0 0 10px rgba(0,0,0,.1);
}

.product-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:8px;
}

.product-card a{
display:inline-block;
margin-top:10px;
background:#4caf50;
color:white;
padding:10px 20px;
text-decoration:none;
border-radius:5px;
}

.page-banner{
background:#4caf50;
color:white;
text-align:center;
padding:60px;
}

.product-detail{
padding:60px 0;
}

.detail-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.detail-img{
width:100%;
border-radius:10px;
}

footer{
background:#222;
color:white;
text-align:center;
padding:40px;
margin-top:40px;
}

@media(max-width:768px){

.about-grid,
.detail-grid{
grid-template-columns:1fr;
}

.feature-grid{
grid-template-columns:1fr 1fr;
}

.overlay h2{
font-size:28px;
}

}