* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.hero {
  height: 100vh;
  color: white;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('../images/hero.jpg') center/contain no-repeat;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 25px 50px;
}

.menu a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.hero-content {
  text-align: center;
  margin-top: 18%;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
}

.hero-content p {
  margin: 20px 0;
  font-size: 1.2rem;
}

.btn, button {
  background: #c8a96b;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border: none;
}

.section {
  padding: 80px 10%;
  text-align: center;
}

.gray {
  background: #f4f4f4;
}

.cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  width: 280px;
  background: white;
  padding: 25px;
  border-radius: 10px;
}

form {
  max-width: 500px;
  margin: auto;
}

form input, form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 50px;
}

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

@media(max-width:768px){
  .hero-content h1{
    font-size:2rem;
  }
}
