.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); /* Ensures content starts below fixed header */
  box-sizing: border-box;
}

.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  background-color: #000000; /* Primary color for hero background */
  overflow: hidden;
}

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

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

.page-privacy-policy__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 0 0 10px rgba(252, 188, 69, 0.5);
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for light 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.2s ease;
}

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

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF; /* White background for policy content */
  color: #333333; /* Dark text for white background */
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-50px);
  position: relative;
  z-index: 2;
}

.page-privacy-policy__section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-privacy-policy__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #000000; /* Primary color for section titles */
  margin-bottom: 15px;
  border-left: 5px solid #FCBC45;
  padding-left: 10px;
}

.page-privacy-policy__section p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  display: block;
  max-width: 800px; /* Ensure images do not overflow and are reasonably sized */
  min-width: 200px;
  object-fit: cover;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  margin-top: 15px;
}

.page-privacy-policy__list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-privacy-policy__inline-link {
  color: #FCBC45; /* Link color */
  text-decoration: none;
  font-weight: bold;
}

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

.page-privacy-policy__cta-section {
  text-align: center;
  background-color: #000000; /* Dark background for final CTA */
  color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  margin-top: 50px;
}

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

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

.page-privacy-policy__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }

  .page-privacy-policy__main-title {
    font-size: 2.5em;
  }

  .page-privacy-policy__intro-description {
    font-size: 1.1em;
  }

  .page-privacy-policy__content-area {
    padding: 20px 15px;
    transform: translateY(-30px);
  }

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

  .page-privacy-policy__section p,
  .page-privacy-policy__list li {
    font-size: 1em;
  }

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

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

  .page-privacy-policy__cta-button,
  .page-privacy-policy__cta-button--large {
    width: 100%;
    padding: 15px 0;
  }

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

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

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

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

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

/* Mobile content area overflow prevention */
@media (max-width: 768px) {
  .page-privacy-policy {
    overflow-x: hidden;
  }
  .page-privacy-policy__content-area {
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-privacy-policy img {
    max-width: 100% !important;
    height: auto !important;
  }
}