/* Page-specific styles for Política de Cancelación */

.hero-page {
  position: relative;
  height: 40vh; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  padding-top: 8.5rem; /* Space for top-bar + header */
}

.hero-page .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Darker overlay for readability */
}

.hero-page .container {
  position: relative;
  z-index: 10;
}

.hero-page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-page-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content {
  background-color: #ffffff;
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.8rem;
  color: #1f2937;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.legal-section h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", serif;
}

.legal-section p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style: none; /* Remove default bullet */
  padding-left: 0;
}

.legal-section ul li {
  margin-bottom: 0.75rem;
  color: #4b5563;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem; /* Space for custom bullet */
}

.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em; /* Adjust vertical alignment of bullet */
  width: 0.5rem;
  height: 0.5rem;
  background: #d4af37; /* Gold color for bullet */
  border-radius: 50%;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-page {
    height: 30vh;
    padding-top: 9rem; /* Adjusted for mobile header */
  }

  .hero-page-title {
    font-size: 2.5rem;
  }

  .hero-page-subtitle {
    font-size: 0.9rem;
  }

  .legal-section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }

  .legal-section h3 {
    font-size: 1.25rem;
  }

  .legal-section p,
  .legal-section ul li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-page {
    padding-top: 8.5rem; /* Adjusted for compact mobile header */
  }
}
