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

/* --- Base Styles --- */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* #F2FFF6 from custom colors */
  background-color: var(--background-color); /* #08160F from custom colors */
  padding-bottom: 50px; /* Ensure content above footer */
}

/* --- Hero Section --- */
.page-privacy-policy__hero-section {
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding for hero section */
  padding-bottom: 40px;
  background-color: var(--card-bg); /* #11271B */
  position: relative;
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-privacy-policy__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

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

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

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: var(--button-gradient);
  color: #ffffff; /* Ensure contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsive */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-privacy-policy__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Slightly inverted gradient on hover */
  transform: translateY(-2px);
}

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

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

.page-privacy-policy__section-title {
  color: var(--text-main); /* #F2FFF6 */
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 25px;
  text-align: left;
  padding-left: 20px; /* Align with container padding */
  padding-right: 20px;
}

.page-privacy-policy__paragraph {
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 20px;
  text-align: justify;
  padding: 0 20px; /* Align with container padding */
}

.page-privacy-policy__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  padding-left: 20px; /* Align with container padding */
  padding-right: 20px;
}

.page-privacy-policy__list-item {
  position: relative;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 10px;
  padding-left: 25px;
  text-align: justify;
}

.page-privacy-policy__list-item::before {
  content: '•'; /* Custom bullet point */
  color: var(--main-color); /* #11A84E */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

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

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  max-width: 800px; /* Example max-width for content images */
}

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

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

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

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

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

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  color: var(--text-main); /* #F2FFF6 */
  font-size: 1.1rem;
  background-color: var(--deep-green-color); /* #0A4B2C */
  transition: background-color 0.3s ease;
}

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

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

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

.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;
  color: var(--text-secondary); /* #A7D9B8 */
  text-align: justify;
}

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

/* --- Responsive Styles --- */
@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-privacy-policy__container,
  .page-privacy-policy__hero-content,
  .page-privacy-policy__section-title,
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list,
  .page-privacy-policy__faq-list {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

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

  .page-privacy-policy__hero-image-wrapper,
  .page-privacy-policy__content-section,
  .page-privacy-policy__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Buttons */
  .page-privacy-policy__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Adjust hero section padding for mobile */
  .page-privacy-policy__hero-section {
    padding: 20px 0;
    padding-top: 10px !important; /* Small top padding */
  }

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

  .page-privacy-policy__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

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

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: clamp(1.5rem, 9vw, 2.2rem);
  }
}