body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #000;
  color: #d4af37;
}
.hero {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), black 80%), url('video-placeholder.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.logo {
  max-width: 120px;
  margin-bottom: 20px;
}
.branding h1 {
  font-size: 2.5rem;
  margin: 0;
  text-shadow: 2px 2px 6px black;
}
.branding p {
  font-size: 1.2rem;
  margin-top: 10px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 4px black;
}
.content {
  padding: 40px 20px;
}
.video-placeholder {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 40px;
  height: 405px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder img {
  width: 80px;
}
form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
input, textarea {
  padding: 12px;
  border: 1px solid #d4af37;
  background-color: transparent;
  color: #d4af37;
  font-size: 1rem;
}
button {
  padding: 12px;
  background-color: #d4af37;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}
.social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 40px auto 0;
  flex-wrap: wrap;
  gap: 20px;
}
.social a {
  color: #d4af37;
  font-size: 1.5rem;
  text-decoration: none;
}
.whatsapp-button {
  background-color: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    padding: 40px 10px;
  }
  .branding h1 {
    font-size: 2rem;
  }
  .branding p {
    font-size: 1rem;
  }
}
