.page-privacy-policy {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: var(--header-offset, 80px);
  }
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  height: 500px; /* Fixed height for hero section */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
}

.page-privacy-policy__main-heading {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-privacy-policy__intro-paragraph {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

.page-privacy-policy__button--primary {
  background-color: #FFD700;
  color: #0A1931;
}

.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: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-privacy-policy__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0A1931; /* Dark background for content sections */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for sections */
  border-radius: 8px;
}

.page-privacy-policy__section-heading {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

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

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  color: #e0e0e0;
}

.page-privacy-policy__list-item strong {
  color: #FFD700;
}

.page-privacy-policy__image-content {
  width: 100%;
  height: auto;
  min-width: 200px; /* Minimum size for content images */
  min-height: 200px; /* Minimum size for content images */
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-privacy-policy__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-privacy-policy__cta-final {
  text-align: center;
  padding: 50px 20px;
  background-color: rgba(255, 255, 255, 0.1); /* Slightly lighter background for CTA */
  border-radius: 10px;
  margin-top: 50px;
}

.page-privacy-policy__cta-heading {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-privacy-policy__cta-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-privacy-policy__button--large {
  padding: 15px 35px;
  font-size: 1.1em;
  background-color: #FFD700;
  color: #0A1931;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    height: 400px;
  }

  .page-privacy-policy__main-heading {
    font-size: 2.2em;
  }

  .page-privacy-policy__intro-paragraph {
    font-size: 1em;
  }

  .page-privacy-policy__cta-buttons {
    flex-direction: column;
  }

  .page-privacy-policy__button {
    width: 80%;
    margin: 0 auto 15px auto;
  }

  .page-privacy-policy__section-heading {
    font-size: 1.8em;
  }

  .page-privacy-policy__cta-heading {
    font-size: 2em;
  }

  .page-privacy-policy__cta-text {
    font-size: 1.1em;
  }

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

  /* Ensure content images do not overflow on mobile */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }
}