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

.hero {
  background: url('hero.jpg') no-repeat center center/cover;
  height: 100vh;
  color: white;
  text-align: center;
  position: relative;
}
.hero .overlay {
  background: rgba(0,0,0,0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.hero h1 { font-size: 2.5em; margin: 0; }
.hero p { font-size: 1.2em; margin: 10px 0; }
.hero .btn {
  background: #fcb040;
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
}

section { padding: 60px 20px; text-align: center; }

.adv-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; }
.adv-list li { margin: 10px 20px; font-size: 1.2em; }

.product-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.product { background: #fff; padding: 20px; border-radius: 10px; width: 250px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
.product img { max-width: 100%; border-radius: 5px; }

form { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
form button {
  background: #fcb040;
  border: none;
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

footer {
  background: #0b3c49;
  color: white;
  padding: 20px;
  text-align: center;
}
