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

header {
  text-align: center;
  background: #111;
  color: #fff;
  padding: 40px 20px;
}

header .logo {
  max-width: 80px;
  display: block;
  margin: 0 auto 10px;
}

.hero {
  text-align: center;
  padding: 40px 20px;
  background: #e0e0e0;
}

.hero img {
  max-width: 600px;
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
}

.products {
  padding: 40px 20px;
}

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

.product {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 300px;
  text-align: center;
  padding: 20px;
}

.product img {
  width: 100%;
  border-radius: 6px;
}

.contact {
  text-align: center;
  padding: 40px 20px;
  background: #111;
  color: #fff;
}

.contact a {
  color: #ffcc00;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  background: #222;
  color: #bbb;
}

