body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

header {
  background: #004d99;
  color: #fff;
  text-align: center;
  padding: 10px;
}

.logo {
  width: 80px;
  margin-bottom: 10px;
}

h1, h2, h3 {
  margin: 10px 0;
}

.hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

section {
  padding: 40px;
  background: #fff;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery img {
  width: 30%;
  border-radius: 5px;
}

.whatsapp-button {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

footer {
  background: #004d99;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer .socials {
  margin-top: 10px;
}
