
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0fdf4;
  color: #2e4d2f;
}

header {
  background-color: #c2f6cc;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  height: 200px;
  margin-bottom: -80px;
  margin-top: -50px;
}

.hero {
  text-align: center;
  padding: 3rem 2rem;
  background: #e6fce5;
}

.hero img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero h1 {
  font-size: 2.5rem;
  margin-top: 1rem;
  color: #1f3b1f;
}

.hero p {
  font-size: 1.25rem;
  color: #456145;
}

.comparison {
  padding: 3rem 2rem;
  background: white;
  text-align: center;
}

.row {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  text-align: center;
  max-width: 400px;
}

.column img {
  height: 120px;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

ul.faded li {
  color: #aaa;
}

.timeline {
  background: #d6fdd5;
  padding: 3rem 2rem;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.steps div {
  flex: 1;
  max-width: 180px;
}

.steps img {
  height: 80px;
}

.products {
  padding: 3rem 2rem;
  text-align: center;
  background: white;
}

.product-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.product-row div {
  flex: 1;
  max-width: 160px;
}

.product-row img {
  height: 90px;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 2rem;
  background: #b8f6c0;
  color: #2e4d2f;
  font-size: 0.9rem;
}
