body {
  margin: 0;
  font-family: "Lato", "Poppins", sans-serif;
  background-color: #FFFDF8;
  color: #333;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #F7F3EE;
  border-bottom: 1px solid #e0ddd8;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #8C7B6C;
}

nav a {
  text-decoration: none;
  color: #555;
  margin-left: 20px;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: #8C7B6C;
}

.hero {
  text-align: center;
  padding: 120px 20px;
  background-color: #FFFDF8;
}

.hero h1 {
  font-size: 2.4em;
  margin-bottom: 10px;
  color: #8C7B6C;
}

.hero button {
  background-color: #8C7B6C;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

.hero button:hover {
  background-color: #7a6a5f;
}

.products {
  text-align: center;
  padding: 60px 20px;
}

.products h2 {
  color: #8C7B6C;
  margin-bottom: 20px;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery img {
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content {
  padding: 60px 40px;
  max-width: 800px;
  margin: auto;
}

footer {
  text-align: center;
  background-color: #F7F3EE;
  padding: 20px;
  margin-top: 60px;
  font-size: 14px;
  color: #777;
}