body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #b8860b; /* Goldbraun */
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 1em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero {
  background-color: #f2f2f2;
  text-align: center;
  padding: 2em 1em;
}

.cta-button {
  background-color: #daa520; /* Sattes Gold */
  color: white;
  padding: 0.75em 1.5em;
  text-decoration: none;
  border-radius: 5px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1em;
  padding: 2em;
}

.product-card {
  border: 1px solid #ccc;
  padding: 1em;
  text-align: center;
}

footer {
  background-color: #b8860b; /* Goldbraun */
  color: white;
  text-align: center;
  padding: 1em;
}
