.page-privacy-policy {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.page-privacy-policy__hero-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background-color: #1A1A2E; /* Main brand color for hero background */
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-privacy-policy__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  font-weight: bold;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1em;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__button--primary {
  background-color: #FFD700; /* Accent color */
  color: #1A1A2E;
}

.page-privacy-policy__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-privacy-policy__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-privacy-policy__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-privacy-policy__button--contact {
  background-color: #1A1A2E;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-privacy-policy__button--contact:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  transform: translateY(-2px);
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.page-privacy-policy__section {
  margin-bottom: 30px;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #1A1A2E;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-privacy-policy__list-item {
  margin-bottom: 8px;
}

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  display: block;
  max-width: 800px; /* Ensure content images are large enough */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-privacy-policy__link-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1A1A2E;
  color: #FFD700;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-privacy-policy__link-button:hover {
  background-color: #0d0d1a;
}

.page-privacy-policy__cta-section {
  background-color: #FFD700; /* Accent color for CTA background */
  color: #1A1A2E;
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
  border-radius: 10px;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.page-privacy-policy__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-title {
    font-size: 2em;
  }

  .page-privacy-policy__hero-description {
    font-size: 1em;
  }

  .page-privacy-policy__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-privacy-policy__button {
    width: 100%;
  }

  .page-privacy-policy__section-title {
    font-size: 1.5em;
  }

  .page-privacy-policy__cta-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__content-area {
    padding: 20px;
    margin-top: -30px;
  }

  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
  }

  /* Critical: prevent content overflow on mobile */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }

  .page-privacy-policy__hero-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__hero-description {
    font-size: 0.9em;
  }

  .page-privacy-policy__content-area {
    padding: 15px;
  }

  .page-privacy-policy__section-title {
    font-size: 1.3em;
  }

  .page-privacy-policy__cta-title {
    font-size: 1.5em;
  }
}