.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 not hidden by fixed header */
}

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

.page-privacy-policy__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #1A1A1A; /* Auxiliary dark background */
  overflow: hidden;
}

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

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

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

.page-privacy-policy__description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1A1A1A; /* Auxiliary dark background */
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for sections */
  border-left: 5px solid #FFD700;
  border-radius: 4px;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

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

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

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

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

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

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

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

.page-privacy-policy__cta-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #1A1A1A;
  border-top: 2px solid #FFD700;
  margin-top: 40px;
  border-radius: 8px;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-privacy-policy__cta-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

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

  .page-privacy-policy__section {
    padding: 15px;
  }

  /* Ensure content images are responsive and not smaller than 200px */
  .page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min width for content images */
    min-height: 200px;
  }

  .page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min width for hero image */
    min-height: 200px;
  }
}

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

  .page-privacy-policy__description,
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 0.95em;
  }

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