
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fdfaf6;
  color: #3a2f2b;
  line-height: 1.6;
}
.hero {
  background: url('https://images.unsplash.com/photo-1505253210343-d4fd7c4032a2') center/cover no-repeat;
  text-align: center;
  padding: 5rem 1rem;
  color: #fff;
}
.logo {
  max-width: 180px;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-button {
  background-color: #8b5e3c;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
section {
  padding: 3rem 1.5rem;
  text-align: center;
}
.about, .sustainability {
  background-color: #f1ece4;
}
.product-card {
  margin-top: 1rem;
}
.product-card img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin-bottom: 1rem;
}
footer {
  background-color: #e8e1d6;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
a {
  color: #8b5e3c;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
