.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  text-align: center;
  background-color: #1A202C; /* Dark blue-grey for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-privacy-policy__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-privacy-policy__tagline {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto;
}

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

.page-privacy-policy__content-section {
  padding: 60px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0a0a0a; /* Default for non-dark-bg sections */
  color: #ffffff;
}

.page-privacy-policy__content-section.page-privacy-policy__dark-bg {
  background-color: #1A202C;
  color: #ffffff;
}

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
}