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

.page-privacy-policy {
  background-color: var(--bg-color); /* Inherited from shared, which is #08160F */
  color: var(--text-secondary); /* Default text for general paragraphs */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-privacy-policy h1,
.page-privacy-policy h2,
.page-privacy-policy h3,
.page-privacy-policy h4,
.page-privacy-policy h5,
.page-privacy-policy h6,
.page-privacy-policy strong {
  color: var(--text-main); /* Main headings and strong text are lighter */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px; /* Space below content */
  background-color: var(--card-bg); /* Use card background for hero section's own bg */
}

.page-privacy-policy__hero-image {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  object-fit: cover;
  display: block;
}

.page-privacy-policy__hero-content {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  padding-top: 10px; /* Small top padding for hero content */
  color: var(--text-main);
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size for H1 */
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-main); /* Ensure light text for dark background */
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--button-gradient);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-privacy-policy__cta-button:hover {
  background: linear-gradient(180deg, var(--deep-green) 0%, var(--primary-color) 100%); /* Adjusted hover for better contrast */
}

.page-privacy-policy__cta-button--inline {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure responsiveness for inline buttons */
}

.page-privacy-policy__content-section {
  padding: 60px 0;
  background-color: var(--bg-color); /* Deep Green #08160F */
  color: var(--text-main); /* #F2FFF6 */
}

.page-privacy-policy__dark-bg {
  background-color: var(--bg-color); /* Ensure dark background for the section */
  color: var(--text-main); /* Light text */
}

.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-top: 40px;
  margin-bottom: 20px;
  color: var(--text-main);
  border-left: 5px solid var(--primary-color); /* #11A84E */
  padding-left: 15px;
  line-height: 1.3;
}

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

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

.page-privacy-policy__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-privacy-policy__list-item::before {
  content: '✔'; /* Custom bullet point */
  color: var(--primary-color); /* #11A84E */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-privacy-policy__list-item ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 5px;
  color: var(--text-secondary);
}

.page-privacy-policy__list-item ul li {
  padding-left: 0;
  margin-bottom: 5px;
  color: var(--text-secondary);
}

.page-privacy-policy__list-item ul li::before {
  content: ''; /* Remove custom bullet for nested lists */
}

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

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

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

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  color: var(--text-main);
  transition: background-color 0.3s ease;
  user-select: none; /* Prevent text selection on click */
}

.page-privacy-policy__faq-question:hover {
  background-color: rgba(var(--border-color-rgb), 0.2); /* Using RGB variable */
}

.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(--primary-color); /* #11A84E */
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  content: '−'; /* Change content for open state */
}

.page-privacy-policy__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

  .page-privacy-policy__hero-content {
    padding: 15px;
    padding-top: 10px; /* Small top padding for hero content */
  }

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

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

  .page-privacy-policy__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
    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__cta-button--inline {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

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

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

  .page-privacy-policy__section-title {
    font-size: 1.6em;
    padding-left: 10px;
  }

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

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

  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container {
    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 already handles --header-offset, this is for visual separation */
  }

  /* Ensure general text readability on mobile */
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-privacy-policy__card {
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
}