.page-privacy-policy {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Text Main from custom palette for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding as per instruction, body handles main offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-privacy-policy__hero-content {
  position: relative; /* Not absolute, to ensure it's below the image */
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Pull content up slightly to overlap visually without actually overlaying the image */
  background: rgba(8, 22, 15, 0.8); /* Semi-transparent background for readability */
  border-radius: 10px;
  z-index: 1; /* Ensure text is above any background elements if any */
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: bold;
  color: #F2C14E; /* Gold from custom palette */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-privacy-policy__tagline {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary from custom palette */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main for button text */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box; /* Ensure padding/border included in width */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
}

.page-privacy-policy__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-privacy-policy__cta-button--secondary {
  background: transparent;
  border: 2px solid #2AD16F;
  color: #2AD16F;
}

.page-privacy-policy__cta-button--secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-privacy-policy__cta-button--gold {
  background: linear-gradient(180deg, #F2C14E 0%, #E0A83A 100%);
  color: #08160F; /* Dark text for gold button */
}

.page-privacy-policy__cta-button--gold:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-privacy-policy__section {
  padding: 60px 20px;
  text-align: center;
}

.page-privacy-policy__container {
  max-width: 1000px;
  width: 100%; /* Added for desktop as per instruction */
  margin: 0 auto;
  padding: 0 15px;
}

.page-privacy-policy__card {
  background-color: #11271B; /* Card BG from custom palette */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border from custom palette */
  margin-bottom: 30px;
  color: #F2FFF6; /* Text Main for card content */
}

.page-privacy-policy__dark-section {
  background-color: #0A4B2C; /* Deep Green from custom palette */
  color: #F2FFF6;
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  color: #2AD16F; /* Main brand green */
  margin-bottom: 30px;
  font-weight: bold;
}

.page-privacy-policy__sub-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-privacy-policy__text-block {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: left;
}

.page-privacy-policy__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-privacy-policy__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-privacy-policy__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Main brand green */
  font-weight: bold;
}

.page-privacy-policy__image-wrapper {
  margin: 30px auto;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  min-width: 200px; /* Enforce minimum width */
  min-height: 200px; /* Enforce minimum height */
}

.page-privacy-policy a {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
  color: #2AD16F; /* Darker green on hover */
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-privacy-policy__hero-content {
    padding: 30px 15px;
    margin-top: -50px;
  }

  .page-privacy-policy__main-title {
    font-size: 2em;
  }

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

  .page-privacy-policy__cta-button,
  .page-privacy-policy__cta-button--secondary,
  .page-privacy-policy__cta-button--gold {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-privacy-policy__section {
    padding: 40px 10px;
  }

  .page-privacy-policy__container,
  .page-privacy-policy__card {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__card {
    padding: 25px;
  }

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

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

  .page-privacy-policy__text-block,
  .page-privacy-policy__list-item,
  .page-privacy-policy__faq-answer {
    font-size: 0.95em;
  }

  /* Images responsive */
  .page-privacy-policy img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* No CSS filter for images */
  .page-privacy-policy img {
    filter: none;
  }

  /* Video responsive (if any, though none on this page) */
  .page-privacy-policy video,
  .page-privacy-policy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-privacy-policy__video-section,
  .page-privacy-policy__video-container,
  .page-privacy-policy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-privacy-policy__video-section {
    padding-top: 10px !important; /* Small top padding for video section on mobile */
  }
}