.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 is below fixed header */
}

.page-privacy-policy__hero-section {
  background-color: #1A1A1A; /* Auxiliary dark background for hero */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #FFD700;
}

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

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

.page-privacy-policy__title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(26, 26, 26, 0.8); /* Slightly transparent dark background for content */
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__article {
  padding: 20px;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #FFD700; /* Gold for section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-privacy-policy__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-privacy-policy__link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-privacy-policy__final-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #1A1A1A; /* Dark background for final CTA */
  border-radius: 8px;
  border: 1px solid #FFD700;
}

.page-privacy-policy__cta-text {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

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

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

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

  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }

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

  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  /* Mobile content area images must be responsive */
  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__title {
    font-size: 1.8em;
  }

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