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

.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background for hero text contrast */
  padding: 0;
  margin-bottom: 40px;
}

.page-privacy-policy__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
  filter: brightness(0.8); /* Slightly darken image for text readability without altering color */
}

.page-privacy-policy__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 80%;
  z-index: 2;
}

.page-privacy-policy__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #B80000; /* Main brand color for button */
  color: #ffffff;
  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;
}

.page-privacy-policy__hero-button:hover {
  background-color: #FFD700; /* Auxiliary color on hover */
  color: #B80000; /* Dark text on light button */
  transform: translateY(-3px);
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.page-privacy-policy__section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-privacy-policy__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #B80000; /* Main brand color for section titles */
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

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

.page-privacy-policy__highlight {
  font-weight: bold;
  color: #B80000;
}

.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__image {
  width: 100%;
  max-width: 800px; /* Ensure images are not too wide */
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__link {
  color: #B80000;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #FFD700;
}

.page-privacy-policy__contact-info {
  margin-bottom: 5px;
  font-size: 1em;
  color: #444444;
}

.page-privacy-policy__contact-link {
  color: #B80000;
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__contact-link:hover {
  text-decoration: underline;
}

.page-privacy-policy__cta-section {
  text-align: center;
  background-color: #f9f9f9;
  padding: 50px 20px;
  margin-top: 40px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  color: #B80000;
  margin-bottom: 20px;
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA button */
  color: #B80000; /* Dark text on light button */
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
  background-color: #B80000; /* Main brand color on hover */
  color: #FFD700; /* Light text on dark button */
  transform: translateY(-5px);
}

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

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

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

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

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

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

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

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

  /* Mobile content area images must be responsive */
  .page-privacy-policy__content-area img {
    max-width: 100%;
    height: auto;
  }
}

@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-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

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