.page-privacy-policy {
  color: #333333; /* Dark text for default (light) body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header if needed, though var handles it */
  }
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 400px; /* Minimum height for hero section */
  background-color: #1E90FF; /* Auxiliary color for background if image not loaded */
}

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

.page-privacy-policy__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  color: #ffffff; /* White text for hero section */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Golden title */
  font-weight: bold;
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Golden button */
  color: #1E90FF; /* Royal blue text for button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

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

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

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #1E90FF; /* Royal blue for section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700; /* Golden underline */
  padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
  font-size: 1.5em;
  color: #FFD700; /* Golden for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 1.7;
  color: #444444;
}

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

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

.page-privacy-policy__list-item strong {
  color: #1E90FF;
}

.page-privacy-policy__link {
  color: #1E90FF; /* Royal blue for links */
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  text-decoration: underline;
  color: #007bff; /* Slightly different blue on hover */
}

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
  max-width: 1000px; /* Ensure images don't overflow on desktop */
  min-width: 200px; /* Enforce minimum size */
}

.page-privacy-policy__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.page-privacy-policy__cta-text {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 25px;
  font-weight: bold;
}

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

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

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

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

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

  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 0.95em;
  }

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

  .page-privacy-policy__image {
    max-width: 100%; /* Prevent overflow on small screens */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px; /* Ensure images are not too small */
  }
  
  .page-privacy-policy__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

/* Prevent any image within page-privacy-policy from being too small in content area */
.page-privacy-policy img {
  max-width: 100%; /* Ensure images are responsive */
  height: auto; /* Maintain aspect ratio */
  min-width: 200px; /* Enforce minimum width for all content images */
  min-height: 200px; /* Enforce minimum height for all content images */
  object-fit: cover; /* Ensure images fill their space without distortion */
}

/* Specific override for hero image if needed, though general img rule should cover it */
.page-privacy-policy__hero-image {
    min-width: unset; /* Hero image can be wider than 200px naturally */
    min-height: unset;
}