
body {
  margin: 0;
  font-family: sans-serif;
  background-color: #fff9db;
}
.hero {
  background: url('images/hero-bg.jpeg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.overlay {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 8px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 40px;
}
.contact {
  margin-top: 10px;
}
.whatsapp-button {
  display: inline-block;
  font-size: 30px;
  color: #25D366;
  margin-top: 20px;
}
.advantages {
  text-align: center;
  margin: 30px 10px;
}
.adv-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}
.adv-buttons button {
  background: #28a745;
  color: white;
  border: 2px solid black;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
}
.gallery {
  padding: 30px 15px;
  text-align: center;
}
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.gallery-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;

  object-fit: cover;
  width: 100%;
  height: 300px;
  border-radius: 10px;
}
footer {
  text-align: center;
  padding: 20px;
  background: #f1f1f1;
}
