body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #0d0d0d;
  color: #fff;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.logo {
  color: #d4af37;
  font-weight: bold;
}

.hero {
  height: 100vh;
  background: url('hero.jpg') center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  top: 30%;
  padding: 20px;
}

.btn-primary {
  display: block;
  background: #d4af37;
  color: black;
  padding: 15px;
  margin: 10px 0;
  text-align: center;
  text-decoration: none;
}

.btn-secondary {
  display: block;
  border: 1px solid #d4af37;
  padding: 15px;
  text-align: center;
  color: #d4af37;
  text-decoration: none;
}

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

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.card {
  padding: 20px;
  border: 1px solid #333;
}

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

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  padding: 15px;
  border-radius: 50%;
}