.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Default text color for the page, will be #F2FFF6 */
  background-color: var(--background); /* This will be #08160F from custom colors */
}

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

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.page-privacy-policy__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.4); /* Glow */
}

.page-privacy-policy__intro-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-secondary); /* #A7D9B8 */
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

.page-privacy-policy__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 15px;
}

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

.page-privacy-policy__list-item {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-privacy-policy__link {
  color: var(--glow); /* #57E38D */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: var(--gold); /* #F2C14E */
}

.page-privacy-policy__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

/* FAQ Section */
.page-privacy-policy__faq-section {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 2px solid var(--divider); /* #1E3A2A */
}

.page-privacy-policy__faq-main-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--text-main); /* #F2FFF6 */
  text-align: center;
  margin-bottom: 40px;
}

.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;
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: var(--text-main); /* #F2FFF6 */
  font-weight: 600;
  font-size: 1.1rem;
  background-color: rgba(17, 168, 78, 0.1); /* Slightly lighter version of primary */
  transition: background-color 0.3s ease;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.page-privacy-policy__faq-question:hover {
  background-color: rgba(17, 168, 78, 0.2);
}

.page-privacy-policy__faq-item[open] > .page-privacy-policy__faq-question {
  background-color: rgba(17, 168, 78, 0.25);
}

.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(--glow); /* #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 25px 18px;
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-privacy-policy__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary); /* #A7D9B8 */
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 10px 15px 40px 15px;
  }

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

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

  .page-privacy-policy__intro-text {
    font-size: clamp(0.9rem, 4vw, 1rem);
  }

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

  .page-privacy-policy__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* 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__hero-section,
  .page-privacy-policy__hero-image-wrapper,
  .page-privacy-policy__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Ensure padding is consistent for content areas */
  .page-privacy-policy__content-area {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

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

  .page-privacy-policy__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }
}

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

  .page-privacy-policy__section-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }

  .page-privacy-policy__sub-title {
    font-size: clamp(1.1rem, 6vw, 1.4rem);
  }

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