/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

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

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

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

.page-privacy-policy__hero-content {
  padding: 40px 20px;
  max-width: 800px;
  margin-top: -80px; /* Overlap slightly for design, ensure text is above image */
  position: relative;
  z-index: 1;
  background: rgba(8, 22, 15, 0.8); /* Semi-transparent dark background for text */
  border-radius: 8px;
  padding: 30px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

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

.page-privacy-policy__dark-section {
  background-color: #11271B; /* Card BG */
}

.page-privacy-policy__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #57E38D; /* Glow */
}

.page-privacy-policy__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-privacy-policy__text-link {
  color: #57E38D; /* Glow */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__text-link:hover {
  color: #F2C14E; /* Gold */
}

.page-privacy-policy__contact-section {
  padding: 60px 0;
  text-align: center;
  background-color: #11271B; /* Card BG */
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-privacy-policy__contact-item {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.page-privacy-policy__contact-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

.page-privacy-policy__faq-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

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

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

.page-privacy-policy__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
}

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

.page-privacy-policy__faq-item summary:hover {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-privacy-policy__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-privacy-policy__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

/* Ensure image color filters are not used */
.page-privacy-policy img {
  filter: none;
}

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

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

  .page-privacy-policy__container {
    padding: 0 15px;
  }

  .page-privacy-policy__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-privacy-policy__hero-content {
    margin-top: -40px;
    padding: 20px;
  }

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

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

  .page-privacy-policy__section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .page-privacy-policy__sub-title {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

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

  /* Mobile image responsiveness */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important;
  }

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

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

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

  /* Mobile button responsiveness */
  .page-privacy-policy__cta-button,
  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary,
  .page-privacy-policy a[class*="button"],
  .page-privacy-policy a[class*="btn"] {
    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__cta-buttons,
  .page-privacy-policy__button-group,
  .page-privacy-policy__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-privacy-policy__hero-content .page-privacy-policy__cta-button {
    margin-top: 20px;
  }

  /* Content area images minimum size check */
  .page-privacy-policy__content-area img,
  .page-privacy-policy__text-block img {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}

/* Desktop video width check (not applicable for this page, but as a general rule) */
.page-privacy-policy__video-container {
  width: 100%; /* Ensure desktop width is also 100% alongside max-width */
}

/* Specific color contrast fixes if needed */
.page-privacy-policy__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-privacy-policy__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}