body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}
.privacy-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url('/images/priv-35.jpg'); /* Reemplaza con tu imagen */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.privacy-overlay {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* oscurece fondo */
  padding: 40px 20px;
  border-radius: 10px;
}

.privacy-overlay h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.btn-home {
  display: inline-block;
  background-color: #F1C40F;
  color: #0B1E3C;
  font-family: 'Bebas Neue', sans-serif;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.btn-home:hover {
  background-color: #d4a90a;
}

/* Mobile */
@media (max-width: 768px) {
  .privacy-overlay h1 {
    font-size: 2.2rem;
  }

  .btn-home {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .privacy-hero {
    height: 60vh;
  }
}
.terms-section {
  background-color: #0B1E3C;
  color: #f5f7fa;
  padding: 60px 20px;
  font-family: 'Lato', sans-serif;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.terms-container h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
}
