body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fffdf7;
  color: #333;
}
header {
  background: #2e7d32;
  color: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}
nav a.active {
  text-decoration: underline;
}
.hero {
  text-align: center;
  padding: 100px 20px;
  background: url('https://source.unsplash.com/1600x800/?farm,bihar') center/cover;
  color: white;
}
.hero h2 { font-size: 2.5em; }
.btn {
  display: inline-block;
  background: #fdd835;
  color: #000;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}
.highlights {
  display: flex;
  justify-content: space-around;
  padding: 50px 20px;
  background: #f5f5f5;
}
.content {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
}
.card img {
  width: 100%;
  border-radius: 12px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 30px auto;
}
input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
button.btn {
  border: none;
  cursor: pointer;
}
footer {
  text-align: center;
  background: #2e7d32;
  color: white;
  padding: 10px;
  margin-top: 40px;
}