* {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI';
}

body {
  background: #f5f7f6;
}

/* LOGO */
.top-logo {
  text-align: center;
  padding: 20px;
}

.top-logo img {
  height: 80px;
}

/* NAVBAR */
.navbar {
  text-align: center;
  background: #0a7c6f;
  padding: 12px;
}

.navbar a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}

.navbar a:hover {
  color: #ffd;
}

/* HERO */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;

  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("images/banner.jpg");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 42px;
}

.hero p {
  margin-top: 10px;
  font-size: 18px;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  text-align: center;
}

.alt {
  background: #eaf6f3;
}

/* ABOUT */
.about p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
}

/* CARDS */
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  width: 260px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  padding: 15px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* GALLERY */
.gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.gallery img {
  width: 200px;
  border-radius: 10px;
}

/* CONTACT */
.contact p {
  margin: 10px 0;
}

.whatsapp {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #0a7c6f;
  color: white;
}