.page-privacy-policy {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Main text color from custom palette */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #08160F;
}

.page-privacy-policy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle overlay to allow text readability */
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
  color: #F2FFF6;
}

.page-privacy-policy__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color from custom palette */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  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%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: #08160F; /* Ensure content area also uses dark background */
  color: #F2FFF6;
}

.page-privacy-policy__section-title {
  font-size: 2.2rem;
  color: #F2C14E; /* Gold color for main titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #2E7A4E; /* Border color from custom palette */
  padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
  font-size: 1.6rem;
  color: #22C768; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #F2FFF6; /* Main text color */
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  color: #A7D9B8; /* Secondary text color */
}

.page-privacy-policy__link {
  color: #2AD16F; /* Green from button gradient for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #57E38D; /* Glow color for hover */
  text-decoration: underline;
}

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

.page-privacy-policy__faq-container {
  margin-top: 40px;
}

.page-privacy-policy__faq-item {
  background-color: #11271B; /* Card BG color from custom palette */
  border: 1px solid #2E7A4E; /* Border color from custom palette */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-privacy-policy__faq-item[open] {
  background-color: #0A4B2C; /* Deep Green for open FAQ item */
  border-color: #57E38D; /* Glow color for active border */
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6;
  list-style: none; /* Hide default marker for details/summary */
}

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

.page-privacy-policy__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2AD16F;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
  color: #F2C14E;
}

.page-privacy-policy__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.7;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-content {
    max-width: 700px;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
  }
  .page-privacy-policy__section-title {
    font-size: 2rem;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-bottom: 40px;
  }
  .page-privacy-policy__hero-content {
    padding: 15px;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-privacy-policy__intro-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
    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__content-area {
    padding: 30px 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8rem;
    margin-top: 30px;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.2rem;
    margin-top: 25px;
  }
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 0.95rem;
  }
  .page-privacy-policy__list {
    margin-left: 20px;
  }
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-privacy-policy__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-privacy-policy__faq-answer {
    padding: 0 20px 15px 20px;
  }
  .page-privacy-policy__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }
  .page-privacy-policy__faq-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}