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

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F; /* Dark background from custom palette */
  color: #F2FFF6; /* Light text for dark background */
  overflow: hidden;
}

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

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2FFF6; /* Light text for dark background */
  line-height: 1.2;
}

.page-privacy-policy__subtitle {
  font-size: clamp(1em, 2vw, 1.2em);
  margin-bottom: 30px;
  color: #A7D9B8; /* Secondary light text */
}

.page-privacy-policy__content-section {
  padding: 40px 20px;
  background-color: #f4f7f6; /* Light body background */
  color: #333333; /* Dark text for light background */
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #11A84E; /* Brand primary color */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #2E7A4E;
  padding-bottom: 10px;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333333;
}

.page-privacy-policy strong {
  color: #11A84E;
}

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

.page-privacy-policy__list li {
  margin-bottom: 8px;
  color: #333333;
}

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

.page-privacy-policy__last-updated {
  font-style: italic;
  color: #A7D9B8;
  margin-top: 30px;
  text-align: right;
}

.page-privacy-policy__link {
  color: #11A84E; /* Brand primary color for links */
  text-decoration: none;
  font-weight: 500;
}

.page-privacy-policy__link:hover {
  text-decoration: underline;
  color: #22C768; /* Brand auxiliary color on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

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

  .page-privacy-policy__content-section {
    padding: 30px 15px;
  }

  .page-privacy-policy__container {
    padding: 0 10px;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-top: 30px;
  }

  /* Mobile image responsiveness */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-privacy-policy__content-image {
    margin: 20px auto;
  }

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

  /* Ensure all containers containing images/content are responsive */
  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}