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

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

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background-color, #08160F);
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Adjust as needed */
  margin-bottom: 30px; /* Space between image and content */
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

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

.page-privacy-policy__section-title {
  font-size: 2em;
  color: var(--gold-color, #F2C14E); /* Using Gold for main titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid var(--divider-color, #1E3A2A);
  padding-bottom: 10px;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.5em;
  color: var(--main-color, #11A84E); /* Using Main Green for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

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

.page-privacy-policy__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
}

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

.page-privacy-policy__contact-link {
  color: var(--glow-color, #57E38D); /* Using Glow for links */
  text-decoration: none;
}

.page-privacy-policy__contact-link:hover {
  text-decoration: underline;
}

.page-privacy-policy__last-updated {
  text-align: right;
  font-style: italic;
  color: var(--text-secondary-color, #A7D9B8);
  margin-top: 30px;
}

/* FAQ Section */
.page-privacy-policy__faq-section {
  background-color: var(--card-bg-color, #11271B); /* Card BG for FAQ section */
  padding: 60px 20px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__faq-section .page-privacy-policy__section-title {
  color: var(--text-main-color, #F2FFF6); /* White text for section title on dark background */
  border-bottom-color: var(--deep-green-color, #0A4B2C);
}

.page-privacy-policy__faq-list {
  margin-top: 30px;
}

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

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main-color, #F2FFF6);
  background-color: var(--deep-green-color, #0A4B2C); /* Deep Green for question background */
  transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
  background-color: var(--main-color, #11A84E); /* Hover effect */
}

.page-privacy-policy__faq-qtext {
  flex-grow: 1;
  color: var(--text-main-color, #F2FFF6);
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--glow-color, #57E38D);
  transition: transform 0.3s ease;
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to cross */
}

.page-privacy-policy__faq-answer {
  padding: 15px 25px 20px;
  color: var(--text-secondary-color, #A7D9B8);
  background-color: var(--background-color, #08160F);
}

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

/* CTA Section */
.page-privacy-policy__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--card-bg-color, #11271B); /* Card BG for CTA section */
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-section .page-privacy-policy__section-title {
  color: var(--text-main-color, #F2FFF6);
  border-bottom: none;
  margin-top: 0;
}

.page-privacy-policy__cta-section .page-privacy-policy__text-block {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-privacy-policy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%; /* Ensure container takes full width for flex-wrap */
  max-width: 600px; /* Limit max width for button group */
  margin: 0 auto;
  box-sizing: border-box;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  min-width: 180px; /* Minimum width for buttons */
  text-align: center;
  box-sizing: border-box; /* Include padding in width */
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-privacy-policy__btn-primary {
  background: var(--button-gradient, linear-gradient(180deg, #2AD16F 0%, #13994A 100%));
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Invert gradient on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__btn-secondary {
  background: transparent;
  color: var(--glow-color, #57E38D);
  border: 2px solid var(--glow-color, #57E38D);
}

.page-privacy-policy__btn-secondary:hover {
  background-color: var(--glow-color, #57E38D);
  color: var(--background-color, #08160F); /* Dark text on glow background */
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Global image styles for content area */
.page-privacy-policy img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Details for summary list-style removal */
.page-privacy-policy__faq-item summary {
  list-style: none;
}
.page-privacy-policy__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Responsive adjustments */
@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; /* body already handles --header-offset */
  }

  .page-privacy-policy__hero-image-wrapper {
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .page-privacy-policy__hero-image {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
  }

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

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

  .page-privacy-policy__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-privacy-policy__content-area {
    padding: 20px 15px;
  }

  .page-privacy-policy__section-title {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-privacy-policy__sub-section-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

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

  .page-privacy-policy__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

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

  .page-privacy-policy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    min-width: unset;
  }

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

  .page-privacy-policy__section-wrapper,
  .page-privacy-policy__faq-item,
  .page-privacy-policy__cta-section,
  .page-privacy-policy__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px; */ /* Handled by specific elements */
    /* padding-right: 15px; */ /* Handled by specific elements */
  }
  .page-privacy-policy__faq-section .page-privacy-policy__section-title {
      padding-left: 0;
      padding-right: 0;
  }
  .page-privacy-policy__cta-section .page-privacy-policy__section-title {
      padding-left: 0;
      padding-right: 0;
  }
}