.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Main text color for dark background */
  background-color: var(--background, #08160F); /* Dark background */
}

.page-privacy-policy__link {
  color: var(--glow, #57E38D);
  text-decoration: underline;
}

.page-privacy-policy__link:hover {
  color: var(--gold, #F2C14E);
  text-decoration: none;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 40px; /* Small top padding, more bottom padding */
  background-color: var(--background, #08160F); /* Ensure dark background */
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px; /* Adjust as needed */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-privacy-policy__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 5vw, 3em); /* Responsive font size for H1 */
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--glow, #57E38D); /* Using glow for emphasis */
  line-height: 1.2;
}

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

.page-privacy-policy__content-section {
  padding: 60px 0;
  background-color: var(--card-bg, #11271B); /* Darker section */
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__content-section:nth-of-type(even) {
  background-color: var(--background, #08160F); /* Alternating background */
}

.page-privacy-policy__dark-section {
  background-color: var(--background, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: var(--glow, #57E38D);
}

.page-privacy-policy__text-block h3 {
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__text-block p {
  margin-bottom: 1em;
  color: var(--text-secondary, #A7D9B8);
}

.page-privacy-policy__text-block ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 1em;
  color: var(--text-secondary, #A7D9B8);
}

.page-privacy-policy__text-block ul li {
  margin-bottom: 0.5em;
  color: var(--text-secondary, #A7D9B8);
}

.page-privacy-policy__text-block strong {
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__content-image {
  min-width: 200px;
  min-height: 200px;
  width: 100%; 
  height: auto;
  object-fit: cover;
  margin: 20px auto;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--border, #2E7A4E);
}

.page-privacy-policy__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy__faq-item {
  background-color: var(--background, #08160F);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border, #2E7A4E);
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-main, #F2FFF6);
  background-color: var(--card-bg, #11271B);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-privacy-policy__faq-question:hover {
  background-color: var(--deep-green, #0A4B2C);
}

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

.page-privacy-policy__faq-qtext {
  flex-grow: 1;
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow, #57E38D);
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  content: '−';
}

.page-privacy-policy__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05em;
  color: var(--text-secondary, #A7D9B8);
  background-color: var(--background, #08160F);
  border-top: 1px solid var(--divider, #1E3A2A);
}

.page-privacy-policy__faq-answer p {
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 10px 0 30px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

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

  .page-privacy-policy__text-block h3 {
    font-size: 1.4em;
  }

  .page-privacy-policy__content-section,
  .page-privacy-policy__faq-section {
    padding: 40px 0;
  }

  .page-privacy-policy__container {
    padding: 0 15px;
  }

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

  /* Content section and card containers responsive */
  .page-privacy-policy__content-section,
  .page-privacy-policy__faq-section,
  .page-privacy-policy__container,
  .page-privacy-policy__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__hero-section {
    padding-top: 10px !important; /* body has header-offset */
    padding-left: 0;
    padding-right: 0;
  }

  .page-privacy-policy__hero-content {
    padding: 0 15px;
  }

  /* FAQ items */
  .page-privacy-policy__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-privacy-policy__faq-answer {
    padding: 10px 20px 15px;
  }
}

/* Ensure content area images are not too small */
.page-privacy-policy__text-block img,
.page-privacy-policy__content-section img {
  min-width: 200px;
  min-height: 200px;
  width: 100%; /* For responsive scaling */
  height: auto;
  object-fit: cover;
  margin: 20px auto;
  display: block;
}

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