body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f3ef;
  color: #333;
}

header {
  text-align: center;
  padding: 40px 20px;
  background: #2c2a29;
  color: white;
}

.hero {
  text-align: center;
  padding: 50px 20px;
  background: #d9c5a3;
}

.products {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  width: 200px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 20px;
  background: #2c2a29;
  color: white;
  margin-top: 30px;
}
