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

.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f8f8; /* Light background for hero section */
  overflow: hidden; /* Ensure image doesn't overflow */
}

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

.page-privacy-policy__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  color: #000000; /* Main brand color for titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
}

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

.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;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-privacy-policy__article-heading {
  font-size: 2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.page-privacy-policy__article-sub-heading {
  font-size: 1.5em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 10px;
}

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

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

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

.page-privacy-policy__content-image {
  width: 100%;
  max-width: 600px; /* Constrain max width for content images */
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__contact-link {
  color: #000000; /* Use main brand color for links */
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy__contact-link:hover {
  color: #FCBC45; /* Highlight color on hover */
}

.page-privacy-policy__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f0f0f0;
  margin-top: 40px;
  border-radius: 8px;
}

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

.page-privacy-policy__cta-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

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

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

  .page-privacy-policy__hero-description,
  .page-privacy-policy__cta-description {
    font-size: 1em;
  }

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

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

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

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

  .page-privacy-policy__hero-image,
  .page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure all images within .page-privacy-policy are responsive and not too small on mobile */
@media (max-width: 768px) {
  .page-privacy-policy img {
    max-width: 100% !important;
    height: auto !important;
  }
}