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

.page-privacy-policy__hero-section {
  background-color: #1A2B3C; /* Dark blue auxiliary color */
  color: #FFD700; /* Gold text for dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.page-privacy-policy__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #1A2B3C; /* Dark blue text for gold button */
  padding: 15px 30px;
  border-radius: 8px;
  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: #e6c200; /* Slightly darker gold on hover */
  color: #0d1a26;
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-privacy-policy__section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
}

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px; /* Ensure images are not too small */
}

.page-privacy-policy__link {
  color: #1A2B3C; /* Dark blue for internal links */
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  color: #FFD700; /* Gold on hover */
}

.page-privacy-policy__section--final-cta {
  text-align: center;
  background-color: #1A2B3C;
  color: #f0f0f0;
  padding: 50px 20px;
}

.page-privacy-policy__section--final-cta .page-privacy-policy__section-title {
  color: #FFD700;
  border-bottom-color: #FFD700;
}

.page-privacy-policy__section--final-cta .page-privacy-policy__paragraph {
  color: #f0f0f0;
}

.page-privacy-policy__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

@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.5em;
  }

  .page-privacy-policy__cta-button,
  .page-privacy-policy__cta-button--large {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-privacy-policy__content-area {
    padding: 20px 15px;
  }
  
  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
  }
  
  .page-privacy-policy__section {
    padding: 15px;
  }
}