* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Georgia", serif;
  background-color: #0b0b0b;
  color: #e6e1dc;
  line-height: 1.6;
}

.header {
  text-align: center;
  padding: 40px 20px;
}

.logo {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
}

.hero {
  position: relative;
  text-align: center;
}

.hero img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  opacity: 0.9;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #c88b5f;
}

.hero-text p {
  font-size: 1.2rem;
}

.hero-text span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
}

section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why h2,
.products h2,
.cta h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #c88b5f;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.product img {
  width: 100%;
  border-radius: 6px;
}

.product h3 {
  margin-top: 15px;
  font-size: 1.4rem;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background-color: #c88b5f;
  color: #0b0b0b;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
}

.footer {
  padding: 40px 20px;
  font-size: 0.85rem;
  opacity: 0.7;
}
