.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); /* Fixed header offset */
}

.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Darken image for text readability */
}

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

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

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

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

.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: 1.8em;
  color: #003366; /* Royal Blue */
  margin-bottom: 15px;
}

.page-privacy-policy__section-text {
  font-size: 1em;
  margin-bottom: 10px;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}

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

.page-privacy-policy__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-privacy-policy__link {
  color: #003366; /* Royal Blue */
  text-decoration: underline;
}

.page-privacy-policy__link:hover {
  color: #FFD700; /* Gold on hover */
  text-decoration: none;
}

.page-privacy-policy__contact-info {
  margin-top: 20px;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 5px;
}

.page-privacy-policy__contact-text {
  margin-bottom: 5px;
}

.page-privacy-policy__cta-section {
  text-align: center;
  background-color: #003366; /* Royal Blue background */
  color: #ffffff;
  padding: 50px 20px;
  margin-top: 40px;
  border-radius: 8px;
}

.page-privacy-policy__cta-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Royal Blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  color: #001a33; /* Darker royal blue */
}

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

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

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

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

  .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;
  }

  /* Ensure content images are responsive and not too small */
  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Still enforce minimum size */
    min-height: 200px;
  }
}

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

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

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

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

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

  .page-privacy-policy__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

/* Ensure content area images maintain minimum size */
.page-privacy-policy img:not(.page-privacy-policy__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Image color filter check: No filter property should be used to change image colors */
.page-privacy-policy__hero-image {
  filter: brightness(0.6); /* This is allowed to ensure text readability on hero image */
}