body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #fafaf4;
  color: #2e3d2f;
  line-height: 1.6;
}

header.site-header {
  text-align: center;
  background: #e8f5e9;
  padding: 2rem 1rem;
  border-bottom: 3px solid #4caf50;
}
header .logo {
  width: 120px;
  margin-bottom: 1rem;
}
header h1 {
  font-size: 2rem;
  color: #2e7d32;
  margin: 0.2rem 0;
}
header p {
  color: #558b2f;
  margin: 0;
}

section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
}

.about h2,
.products h2,
.contact h2 {
  font-size: 1.8rem;
  color: #388e3c;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1rem;
  color: #4e4e4e;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.product {
  background: #ffffff;
  border: 1px solid #c8e6c9;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}
.product h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #33691e;
}
.product p {
  font-weight: bold;
  color: #2e7d32;
}

.contact p {
  text-align: center;
  font-size: 1rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #f1f8e9;
  color: #777;
  font-size: 0.9rem;
}
