body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.header {
  background: #2e7d32;
  color: white;
  padding: 20px;
  text-align: center;
}

.nav {
  background: #1b5e20;
  text-align: center;
  padding: 10px;
}

.nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  padding: 40px 20px;
  text-align: center;
  background: #f1f8e9;
}

.btn {
  display: inline-block;
  background: #2e7d32;
  color: white;
  padding: 10px 20px;
  margin-top: 15px;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.section {
  padding: 30px 20px;
  max-width: 900px;
  margin: auto;
}

.bg-light {
  background: #f9f9f9;
}

.products {
  list-style: none;
  padding: 0;
}

.products li {
  background: #e8f5e9;
  margin: 8px 0;
  padding: 10px;
  border-radius: 4px;
}

.footer {
  background: #1b5e20;
  color: white;
  text-align: center;
  padding: 15px;
}