/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for readability on light body background */
  background-color: #f4f4f4; /* Explicitly set to match body background */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px; /* Space below content */
  background-color: #08160F; /* Dark background from custom colors */
  color: #F2FFF6; /* Light text on dark background */
}

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

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-privacy-policy__hero-content {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  z-index: 1;
}

.page-privacy-policy__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
  font-weight: 700;
  color: #F2FFF6; /* Light text on dark background */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8; /* Secondary light text on dark background */
  max-width: 800px;
  margin: 0 auto;
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #f4f4f4; /* Light background from body */
  color: #333333; /* Dark text for contrast */
}

.page-privacy-policy__container {
  max-width: 100%;
  margin: 0 auto;
}

.page-privacy-policy__section-title {
  font-size: 32px;
  color: #11A84E; /* Brand color for titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-privacy-policy__section-title--light {
  color: #F2FFF6; /* Light title on dark background */
}

.page-privacy-policy__sub-title {
  font-size: 24px;
  color: #22C768; /* Auxiliary brand color for subtitles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  color: #333333; /* Dark text for readability on light background */
}

.page-privacy-policy li {
  margin-bottom: 10px;
  color: #333333; /* Dark text for readability on light background */
}

.page-privacy-policy__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min width */
  min-height: 200px; /* Enforce min height */
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding-left: 0;
}

.page-privacy-policy__contact-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #333333; /* Dark text */
}

.page-privacy-policy__contact-list li::before {
  content: '➡️'; /* Unicode arrow for styling */
  position: absolute;
  left: 0;
  color: #11A84E;
}

.page-privacy-policy__contact-list a {
  color: #11A84E; /* Brand color for links */
  text-decoration: none;
}

.page-privacy-policy__contact-list a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-privacy-policy__faq-section {
  background-color: #08160F; /* Dark background as per custom color */
  color: #F2FFF6; /* Light text on dark background */
  padding: 60px 20px;
}

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

.page-privacy-policy__faq-item {
  background-color: #11271B; /* Card BG color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Light text */
}

.page-privacy-policy__faq-item details {
  background-color: #11271B; /* Ensure details content also has dark background */
}

.page-privacy-policy__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: #F2FFF6; /* Light text */
  list-style: none; /* Hide default marker */
  border-bottom: 1px solid #1E3A2A; /* Divider color */
}

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

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

.page-privacy-policy__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #22C768; /* Auxiliary brand color for toggle */
}

.page-privacy-policy__faq-answer {
  padding: 20px;
  padding-top: 0;
  font-size: 16px;
  color: #A7D9B8; /* Secondary light text */
}

.page-privacy-policy__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8; /* Secondary light text */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }

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

  .page-privacy-policy__main-title {
    font-size: 28px !important;
  }

  .page-privacy-policy__hero-description {
    font-size: 16px !important;
  }

  .page-privacy-policy__content-area {
    padding: 30px 15px !important;
  }

  .page-privacy-policy__section-title {
    font-size: 26px !important;
  }

  .page-privacy-policy__sub-title {
    font-size: 20px !important;
  }

  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset !important; /* Allow smaller images on mobile if needed, but min 200px is global */
    min-height: unset !important;
  }
  
  .page-privacy-policy__content-area,
  .page-privacy-policy__faq-section,
  .page-privacy-policy__container,
  .page-privacy-policy__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-privacy-policy p,
  .page-privacy-policy li {
    font-size: 15px !important;
  }

  .page-privacy-policy__faq-section {
    padding: 40px 15px !important;
  }

  .page-privacy-policy__faq-item summary {
    font-size: 16px !important;
    padding: 15px !important;
  }

  .page-privacy-policy__faq-answer {
    font-size: 15px !important;
  }

  /* Ensure all buttons are responsive */
  .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 !important;
    padding-right: 15px !important;
  }
  
  .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 !important;
    padding-right: 15px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .page-privacy-policy__cta-buttons {
    display: flex;
    flex-direction: column !important;
  }
}