.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color, adjusted by sections */
  background-color: var(--bg-color, #08160F); /* Body background from shared */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--deep-green, #0A4B2C);
}

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

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-privacy-policy__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: var(--text-main, #F2FFF6);
  padding: 20px;
  max-width: 90%;
}

.page-privacy-policy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gold, #F2C14E);
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-privacy-policy__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

.page-privacy-policy__section:last-of-type {
  border-bottom: none;
}

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

.page-privacy-policy__section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: var(--gold, #F2C14E);
}

.page-privacy-policy__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-privacy-policy__dark-section {
  background-color: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__light-bg {
  background-color: var(--bg-color, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__dark-section .page-privacy-policy__text-block {
  color: var(--text-secondary, #A7D9B8);
}

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

.page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-privacy-policy__contact-item {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-secondary, #A7D9B8);
}

.page-privacy-policy__contact-link {
  color: var(--glow, #57E38D);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: var(--main-color, #11A84E);
}

.page-privacy-policy__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 20px auto;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

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

.page-privacy-policy__faq-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

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

.page-privacy-policy__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--divider, #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 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  cursor: pointer;
  background-color: var(--card-bg, #11271B);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-privacy-policy__faq-question::-webkit-details-marker {
  display: none;
}

.page-privacy-policy__faq-question:hover {
  background-color: var(--deep-green, #0A4B2C);
}

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

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  content: '−';
}

.page-privacy-policy__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.7;
  border-top: 1px solid var(--divider, #1E3A2A);
  background-color: var(--card-bg, #11271B);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-content {
    padding: 15px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-privacy-policy__description {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  }

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

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

@media (max-width: 768px) {
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-privacy-policy__hero-image-wrapper {
    max-height: 300px;
  }

  .page-privacy-policy__hero-content {
    position: static;
    transform: none;
    padding: 20px 15px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 5.5vw, 2.5rem);
    margin-bottom: 10px;
  }

  .page-privacy-policy__description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    margin-bottom: 20px;
  }

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

  .page-privacy-policy__section-title {
    font-size: clamp(1.6rem, 4.5vw, 2rem);
    margin-bottom: 20px;
  }

  .page-privacy-policy__text-block {
    font-size: 0.95rem;
  }

  .page-privacy-policy__image {
    margin: 30px auto;
  }

  .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: 12px 20px;
    font-size: 1rem;
  }

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

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

  .page-privacy-policy__faq-toggle {
    font-size: 1.3rem;
  }

  .page-privacy-policy__hero-section .page-privacy-policy__hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 20px;
    width: 100%;
    max-width: 100%;
  }

  .page-privacy-policy__hero-image {
    filter: brightness(0.5); /* Increase darkening on mobile if text is over image */
  }

  /* If hero content is below image, remove absolute positioning and darkening */
  .page-privacy-policy__hero-section {
    flex-direction: column;
  }
  .page-privacy-policy__hero-image-wrapper {
    order: 1; /* Image first */
  }
  .page-privacy-policy__hero-content {
    order: 2; /* Content after image */
    position: relative; /* Reset position */
    transform: none; /* Reset transform */
    background-color: transparent; /* No background overlay if content is separate */
    color: var(--text-main, #F2FFF6); /* Ensure text color is correct */
    padding-top: 10px; /* Small padding top for content after image */
  }
  .page-privacy-policy__hero-image {
    filter: none; /* No darkening if text is not overlaid */
  }
}