.page-privacy-policy {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 40px 20px;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5); /* Darken image slightly for text readability */
}

.page-privacy-policy__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__hero-content {
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 8px;
}

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

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

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

.page-privacy-policy__section {
  margin-bottom: 40px;
  background-color: #0A2342; /* Primary color for section background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__section-text {
  font-size: 1.1em;
  color: #e0e0e0; /* Slightly off-white for body text */
  margin-bottom: 20px;
}

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-privacy-policy__link {
  color: #FFD700; /* Accent color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #e0b000; /* Darker gold on hover */
  text-decoration: underline;
}

.page-privacy-policy__button-group {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for CTA button */
  color: #0A2342; /* Primary color for button text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e0b000; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-privacy-policy__cta-button--secondary {
  background-color: #0A2342; /* Primary color for secondary button */
  color: #FFD700; /* Accent color for secondary button text */
  border: 2px solid #FFD700;
}

.page-privacy-policy__cta-button--secondary:hover {
  background-color: #1a3a60; /* Slightly lighter primary on hover */
  color: #FFD700;
  transform: translateY(-2px);
}

.page-privacy-policy__disclaimer-section {
  text-align: center;
  padding: 30px 20px;
  background-color: #0A2342; /* Primary color for disclaimer background */
  margin-top: 50px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-privacy-policy__disclaimer-text {
  font-size: 0.9em;
  color: #b0b0b0;
  margin-bottom: 5px;
}

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

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

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

  .page-privacy-policy__section-text {
    font-size: 0.95em;
  }

  .page-privacy-policy__button-group {
    flex-direction: column;
    align-items: center;
  }

  .page-privacy-policy__cta-button {
    width: 100%;
    max-width: 300px;
  }

  .page-privacy-policy__hero-section {
    min-height: 400px;
  }

  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-privacy-policy__hero-section {
    min-height: 350px;
  }

  .page-privacy-policy__section {
    padding: 20px;
  }

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