.page-privacy-policy {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
}

.page-privacy-policy__hero-section {
  background-color: #000000; /* Main color for hero background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #FFFFFF; /* Light text for dark background */
}

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

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  position: relative;
  z-index: 1;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA button */
  color: #000000; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e0a53b;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF; /* White background for content */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__article-heading {
  font-size: 2em;
  color: #000000; /* Main color for headings */
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FCBC45; /* Accent line */
  padding-bottom: 5px;
}

.page-privacy-policy__article-paragraph {
  margin-bottom: 15px;
  font-size: 1em;
  color: #333333;
}

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

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

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

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

.page-privacy-policy__contact-button {
  display: inline-block;
  background-color: #000000; /* Main color for contact button */
  color: #FFFFFF; /* Light text for dark button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-privacy-policy__contact-button:hover {
  background-color: #333333;
}

/* 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__article-heading {
    font-size: 1.5em;
  }

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

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

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

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

  .page-privacy-policy__cta-button {
    padding: 12px 20px;
  }

  .page-privacy-policy__article-heading {
    font-size: 1.3em;
  }

  .page-privacy-policy__article-list {
    margin-left: 15px;
  }
}