* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #2a1c16;
  background: #fffaf3;
}

.hero {
  background: linear-gradient(rgba(54, 31, 21, 0.72), rgba(54, 31, 21, 0.72)),
              url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 520px;
  padding: 24px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

nav h1 {
  font-size: 30px;
  letter-spacing: 1px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 18px;
  font-weight: bold;
}

.hero-content {
  max-width: 720px;
  margin: 120px auto 0;
  text-align: center;
}

.hero-content h2 {
  font-size: 44px;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 19px;
  margin-bottom: 28px;
}

.button {
  background: #d28a34;
  color: white;
  padding: 13px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 18px;
  color: #6d351d;
}

.section p {
  font-size: 18px;
  margin-bottom: 14px;
}

.products {
  text-align: center;
}

.cards {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  flex: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card h3 {
  color: #9b4f22;
  margin-bottom: 10px;
}

.highlight {
  background: #f4dfc3;
  border-radius: 18px;
}

.contact {
  text-align: center;
}

.disclaimer {
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 20px 24px;
  font-size: 14px;
  color: #6b5b52;
  text-align: center;
}

footer {
  background: #3b241a;
  color: white;
  text-align: center;
  padding: 22px;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 12px;
  }

  nav a {
    margin: 0 8px;
  }

  .hero-content h2 {
    font-size: 34px;
  }

  .cards {
    flex-direction: column;
  }
}
