.page-privacy-policy {
  color: #333333; /* Default text color 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;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

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

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.page-privacy-policy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B23C; /* Auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-privacy-policy__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-cta-button {
  display: inline-block;
  background-color: #E3B23C; /* Auxiliary color for CTA */
  color: #0A2463; /* Main color for text on CTA */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-privacy-policy__hero-cta-button:hover {
  background-color: #f5db9c; /* Lighter shade on hover */
  transform: translateY(-2px);
}

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

.page-privacy-policy__section {
  margin-bottom: 50px;
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Main color for section titles */
  margin-bottom: 25px;
  border-bottom: 3px solid #E3B23C;
  padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
  font-size: 1.8em;
  color: #0A2463; /* Main color for sub-titles */
  margin-top: 35px;
  margin-bottom: 15px;
}

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

.page-privacy-policy__highlight {
  font-weight: bold;
  color: #0A2463;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

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

.page-privacy-policy__link {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

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

.page-privacy-policy__section--contact {
  text-align: center;
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #0A2463; /* Main color for CTA */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-privacy-policy__cta-button:hover {
  background-color: #1c4dc3; /* Complementary color on hover */
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 3em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1.2em;
  }
  .page-privacy-policy__section-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-content {
    padding: 80px 15px;
    min-height: 400px;
  }
  .page-privacy-policy__hero-title {
    font-size: 2.5em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1.1em;
  }
  .page-privacy-policy__hero-cta-button,
  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-privacy-policy__content-area {
    padding: 30px 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 2em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.4em;
  }
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 1em;
  }
  /* Ensure images do not overflow on mobile */
  .page-privacy-policy__image-content {
    max-width: 100%;
    height: auto;
  }
  .page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-title {
    font-size: 2em;
  }
  .page-privacy-policy__hero-description {
    font-size: 0.95em;
  }
  .page-privacy-policy__hero-content {
    padding: 60px 10px;
    min-height: 300px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.3em;
  }
  .page-privacy-policy__list {
    margin-left: 20px;
  }
}