.page-privacy-policy {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  min-height: 400px; /* Minimum height for hero section */
}

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

.page-privacy-policy__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff; /* White text for readability over hero image */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  max-width: 800px;
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #E3B505; /* Gold for emphasis */
  line-height: 1.2;
}

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

.page-privacy-policy__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.page-privacy-policy__button--primary {
  background-color: #E3B505; /* Gold button */
  color: #0A2463; /* Dark blue text */
  border: 2px solid #E3B505;
}

.page-privacy-policy__button--primary:hover {
  background-color: #f5db9c; /* Lighter gold on hover */
  border-color: #f5db9c;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-privacy-policy__heading {
  color: #0A2463; /* Dark blue heading */
  font-size: 2em;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #E3B505; /* Gold underline */
  padding-bottom: 10px;
}

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

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

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

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

.page-privacy-policy__image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum display size */
  min-height: 200px; /* Enforce minimum display size */
}

.page-privacy-policy__paragraph a,
.page-privacy-policy__list-item a {
  color: #0A2463; /* Dark blue links */
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy__paragraph a:hover,
.page-privacy-policy__list-item a:hover {
  color: #E3B505; /* Gold on hover */
}

.page-privacy-policy__call-to-action {
  background-color: #0A2463; /* Dark blue background */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-top: 40px;
}

.page-privacy-policy__call-to-action-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-privacy-policy__call-to-action-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #E3B505; /* Gold title */
}

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

.page-privacy-policy__button--secondary {
  background-color: #E3B505; /* Gold button */
  color: #0A2463; /* Dark blue text */
  border: 2px solid #E3B505;
}

.page-privacy-policy__button--secondary:hover {
  background-color: #f5db9c; /* Lighter gold on hover */
  border-color: #f5db9c;
}

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

  .page-privacy-policy__hero-description,
  .page-privacy-policy__call-to-action-description {
    font-size: 1em;
  }

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

  .page-privacy-policy__call-to-action-title {
    font-size: 1.8em;
  }

  /* Mobile content area image constraint */
  .page-privacy-policy__content-area img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all images within the main content area are at least 200px wide for mobile */
  .page-privacy-policy__article img {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-area,
  .page-privacy-policy__call-to-action {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-privacy-policy__hero-description {
    font-size: 0.9em;
  }

  .page-privacy-policy__button {
    padding: 10px 20px;
    font-size: 1em;
  }

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

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

  .page-privacy-policy__call-to-action-title {
    font-size: 1.5em;
  }
}