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

.page-privacy-policy__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000080; /* Midnight Blue auxiliary color */
  color: #ffffff;
  padding-bottom: 40px;
}

.page-privacy-policy__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image to make text pop */
}

.page-privacy-policy__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold main color */
  color: #000080; /* Midnight 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;
  border: 2px solid #FFD700;
}

.page-privacy-policy__cta-button:hover {
  background-color: #000080; /* Midnight Blue on hover */
  color: #FFD700; /* Gold text on hover */
  border-color: #FFD700;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-top: -80px; /* Overlap with hero section for visual flow */
  position: relative;
  z-index: 3;
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  color: #000080; /* Midnight Blue */
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 15px;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.8em;
  color: #000080; /* Midnight Blue */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-privacy-policy__content-area p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #333333;
}

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

.page-privacy-policy__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333333;
}

.page-privacy-policy__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  font-size: 1.2em;
  top: 0;
}

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

.page-privacy-policy__learn-more-link,
.page-privacy-policy__contact-link {
  color: #000080; /* Midnight Blue */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__learn-more-link:hover,
.page-privacy-policy__contact-link:hover {
  color: #FFD700; /* Gold on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__intro-text {
    font-size: 1.1em;
  }
  .page-privacy-policy__section-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-bottom: 20px;
  }
  .page-privacy-policy__hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 20px;
    text-shadow: none;
  }
  .page-privacy-policy__hero-image img {
    filter: none; /* Remove filter on mobile if text is not directly over image */
  }
  .page-privacy-policy__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-privacy-policy__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-privacy-policy__content-area {
    padding: 30px 15px;
    margin-top: -40px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-privacy-policy__content-area p,
  .page-privacy-policy__list-item {
    font-size: 0.95em;
  }
  /* Constraint: Mobile content area images must use max-width: 100%; height: auto; */
  .page-privacy-policy__content-area img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__intro-text {
    font-size: 0.9em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 1.2em;
  }
  .page-privacy-policy__list-item {
    padding-left: 25px;
  }
  .page-privacy-policy__list-item::before {
    font-size: 1em;
  }
}