/* style/privacy-policy.css */
.page-privacy-policy {
  background-color: #08160F; /* Dark background */
  color: #F2FFF6; /* Light main text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 50px; /* Space above footer */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  text-align: center;
  background-color: #11271B; /* Card BG for hero */
  border-bottom: 2px solid #2E7A4E; /* Border color */
}

.page-privacy-policy__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 15px;
  max-width: 900px;
}

.page-privacy-policy__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Secondary text */
  max-width: 800px;
  margin-bottom: 40px;
}

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

.page-privacy-policy__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #57E38D; /* Glow color for section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.page-privacy-policy__subsection-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: #F2FFF6; /* Main text color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-privacy-policy ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-privacy-policy li {
  margin-bottom: 8px;
  color: #F2FFF6;
}

.page-privacy-policy a {
  color: #57E38D; /* Glow color for links */
  text-decoration: underline;
}

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

.page-privacy-policy__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #11271B; /* Card BG */
  border-top: 2px solid #2E7A4E;
}

.page-privacy-policy__cta-text {
  font-size: 1.2rem;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Button text */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

  .page-privacy-policy__description {
    font-size: 1rem;
  }

  .page-privacy-policy__content-section {
    margin: 20px auto;
    padding: 0 15px;
  }

  .page-privacy-policy__section-title {
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__subsection-title {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }

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

  .page-privacy-policy__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

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

  .page-privacy-policy__hero-image,
  .page-privacy-policy__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Video responsiveness - added for completeness, though not used in this page */
  .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,
  .page-privacy-policy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

/* Ensure images in content areas are not too small for desktop */
.page-privacy-policy__content-image {
  min-width: 200px;
  min-height: 200px;
}