:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --bg-color-main: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Global styles for the page content, ensuring contrast with body background */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--bg-color-main); /* #08160F */
  padding-bottom: 40px; /* Ensure space before footer */
}

/* Fixed header spacing is handled by shared.css on body, this section should not repeat it */
.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 40px; /* Adjusted padding-top to be small, not var(--header-offset) */
  background-color: var(--bg-color-main); /* #08160F */
  text-align: center;
  overflow: hidden; /* Ensure no overflow issues */
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for hero image */
  margin-bottom: 30px;
  overflow: hidden;
}

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

.page-privacy-policy__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1; /* Ensure content is above any background elements */
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-privacy-policy__intro-description {
  font-size: 1.1em;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 30px;
}

.page-privacy-policy__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--bg-color-main); /* #08160F */
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 25px;
  font-weight: 600;
  text-align: left;
}

.page-privacy-policy__section-title--faq {
  text-align: center;
  margin-top: 60px;
}

.page-privacy-policy__sub-title {
  font-size: 1.6em;
  color: var(--text-main); /* #F2FFF6 */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 800px; /* Ensure content images are not excessively large */
  object-fit: cover;
}

/* Links */
.page-privacy-policy__link {
  color: var(--gold); /* #F2C14E */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: var(--glow); /* #57E38D */
}

/* Buttons */
.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent; /* Default transparent border */
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons are responsive */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-privacy-policy__btn-primary {
  background: var(--btn-gradient); /* linear-gradient(180deg, #2AD16F 0%, #13994A 100%) */
  color: var(--text-main); /* #F2FFF6 */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__btn-secondary {
  background: transparent;
  color: var(--text-main); /* #F2FFF6 */
  border-color: var(--border-color); /* #2E7A4E */
  margin-left: 20px;
}

.page-privacy-policy__btn-secondary:hover {
  background: var(--deep-green); /* #0A4B2C */
  color: var(--glow); /* #57E38D */
  border-color: var(--glow); /* #57E38D */
  transform: translateY(-2px);
}

.page-privacy-policy__cta-section {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-privacy-policy__cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%;
  max-width: 600px; /* Limit button group width */
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-privacy-policy__faq-list {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__faq-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main); /* #F2FFF6 */
}

.page-privacy-policy__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--card-bg); /* #11271B */
}

.page-privacy-policy__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-privacy-policy__faq-question {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold); /* #F2C14E */
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  content: "−"; /* Change to minus when open */
}

.page-privacy-policy__faq-answer {
  padding: 0 20px 20px;
  font-size: 0.95em;
  color: var(--text-secondary); /* #A7D9B8 */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-section {
    padding: 40px 15px 30px;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-privacy-policy__section-title {
    font-size: 2em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-privacy-policy__hero-section {
    padding: 30px 15px 20px;
  }
  .page-privacy-policy__hero-content {
    padding: 0 15px;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-privacy-policy__intro-description {
    font-size: 1em;
  }
  .page-privacy-policy__section {
    padding: 30px 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.2em;
    margin-top: 25px;
  }
  .page-privacy-policy__content-image,
  .page-privacy-policy__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Containers for images, videos, buttons */
  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__hero-image-wrapper,
  .page-privacy-policy__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent overflow for images/videos */
  }

  /* Buttons mobile adaptation */
  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important; /* Remove margin for single column */
    margin-bottom: 15px; /* Add space between stacked buttons */
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-privacy-policy__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px; /* Space between stacked buttons */
  }

  .page-privacy-policy__faq-item {
    padding: 0 5px; /* Adjust padding for smaller screens */
  }
  .page-privacy-policy__faq-item summary {
    padding: 15px 10px;
    font-size: 1em;
  }
  .page-privacy-policy__faq-answer {
    padding: 0 10px 15px;
  }
}

/* Ensure no filter on images */
.page-privacy-policy img {
  filter: none !important;
}

/* Ensure content area images maintain minimum size if not full width */
.page-privacy-policy__content-area img {
  min-width: 200px;
  min-height: 200px;
}