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

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.page-privacy-policy__hero-container {
  position: relative;
  max-width: 100%; /* Ensure no horizontal scroll */
  margin: 0 auto;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-privacy-policy__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.4); /* Subtle overlay for text contrast */
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
}

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

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: -60px; /* Overlap with hero section slightly */
  position: relative;
  z-index: 1;
}

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

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

.page-privacy-policy__subsection-title {
  font-size: 1.5em;
  color: #1A1A1A;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

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

.page-privacy-policy__link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-privacy-policy__contact-info {
  font-style: normal;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-privacy-policy__contact-info p {
  margin-bottom: 8px;
}

.page-privacy-policy__cta-section {
  background-color: #1A1A1A; /* Dark background for CTA */
  color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-privacy-policy__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A;
  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;
  border: none;
  cursor: pointer;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy__hero-title {
    font-size: 2em;
  }

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

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

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

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

  .page-privacy-policy__cta-section {
    padding: 30px 20px;
  }

  .page-privacy-policy__cta-title {
    font-size: 1.6em;
  }

  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  /* Mobile content image constraint */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }

  .page-privacy-policy__hero-image {
    filter: brightness(0.5); /* Slightly darker for mobile */
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-title {
    font-size: 1.8em;
  }

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

  .page-privacy-policy__hero-overlay {
    padding: 15px;
  }

  .page-privacy-policy__content-area {
    padding: 15px 10px;
  }

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

  .page-privacy-policy__subsection-title {
    font-size: 1.2em;
  }

  .page-privacy-policy__cta-section {
    padding: 25px 15px;
  }

  .page-privacy-policy__cta-title {
    font-size: 1.4em;
  }

  .page-privacy-policy__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}