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

/* Base styles for the privacy policy page */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--background); /* #08160F */
  padding-bottom: 60px; /* Space for footer */
}

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

/* Hero Section */
.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 40px; /* Adjusted padding-top for small top margin, not --header-offset */
  text-align: center;
  background-color: var(--deep-green); /* Use a slightly different dark green for hero for visual distinction */
  overflow: hidden; /* Ensure image doesn't overflow */
}

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

.page-privacy-policy__description {
  font-size: clamp(1rem, 2vw, 1.25rem); /* Responsive font size */
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 30px;
  max-width: 800px;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

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

.page-privacy-policy__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text-main); /* #F2FFF6 */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--divider); /* #1E3A2A */
  padding-bottom: 10px;
}

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

.page-privacy-policy__content-section p {
  margin-bottom: 15px;
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 1rem;
}

.page-privacy-policy__content-section strong {
  color: var(--gold); /* #F2C14E */
}

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

.page-privacy-policy__list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-privacy-policy__list li strong {
  color: var(--text-main); /* #F2FFF6 */
}

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

/* Call to Action Section */
.page-privacy-policy__cta-section {
  text-align: center;
  padding: 40px;
  background-color: var(--card-bg); /* #11271B */
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border); /* #2E7A4E */
}

.page-privacy-policy__cta-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 25px;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* For responsive buttons */
  box-sizing: border-box; /* For responsive buttons */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

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

/* FAQ Section */
.page-privacy-policy__faq-section {
  padding: 60px 0;
  background-color: var(--background); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
}

.page-privacy-policy__faq-section .page-privacy-policy__section-title {
  margin-top: 0;
  text-align: center;
  margin-bottom: 40px;
}

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

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

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-main); /* #F2FFF6 */
  list-style: none; /* Remove default marker for details summary */
}

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

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

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

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  transform: rotate(45deg);
}

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

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

/* Global link styling */
.page-privacy-policy a {
  color: var(--glow); /* #57E38D */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
  color: var(--gold); /* #F2C14E */
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-privacy-policy__container {
    padding: 0 15px;
  }

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

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

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

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

  .page-privacy-policy__sub-section-title {
    font-size: 1.3rem;
  }

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

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

  .page-privacy-policy__cta-text {
    font-size: 1.2rem;
  }

  .page-privacy-policy__cta-button {
    width: 100% !important; /* Force full width on mobile */
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

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

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

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

  /* Images responsive */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__cta-section,
  .page-privacy-policy__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* No video section in this page, but if there was, it would follow similar rules */
  /* .page-privacy-policy__video-section {
    padding-top: 10px !important; 
  } */
}

/* Content area image CSS size lower bound check */
/* This rule ensures that any image within the main content area (page-privacy-policy)
   does not get rendered smaller than 200px in width or height by CSS.
   It overrides any conflicting smaller sizes. */
.page-privacy-policy img {
  min-width: 200px;
  min-height: 200px;
  /* For responsive images, max-width: 100% and height: auto are essential,
     but min-width/height ensure they don't shrink too much. */
}
/* Specific content images can be larger */
.page-privacy-policy__hero-image,
.page-privacy-policy__content-image {
  min-width: 400px; /* Example, can be adjusted */
  min-height: 300px; /* Example, can be adjusted */
}

/* Ensure images don't use filter properties */
.page-privacy-policy img {
  filter: none !important;
}

/* Ensure contrast for all text elements */
.page-privacy-policy p,
.page-privacy-policy li,
.page-privacy-policy__section-title,
.page-privacy-policy__sub-section-title,
.page-privacy-policy__cta-text,
.page-privacy-policy__faq-question,
.page-privacy-policy__faq-answer {
  /* These colors are already defined via variables and are designed for contrast on dark background */
  /* If a specific element needs a contrast fix, it would be added here */
}