/* style/privacy-policy.css */

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

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

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  height: 400px; /* Fixed height for image wrapper on desktop */
  overflow: hidden;
  position: relative;
}

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

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Pull content up over the image for visual hierarchy */
  background-color: rgba(17, 47, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__main-title {
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  /* No fixed font-size, relying on clamp if needed, otherwise default browser sizing */
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-privacy-policy__hero-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-privacy-policy__content-section {
  padding: 40px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

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

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

.page-privacy-policy__heading {
  color: #F2C14E; /* Gold */
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #2E7A4E; /* Border */
  padding-bottom: 10px;
}

.page-privacy-policy__sub-heading {
  color: #57E38D; /* Glow */
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
}

.page-privacy-policy__list-item strong {
  color: #F2C14E; /* Gold */
}

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

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

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

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

/* FAQ Section */
.page-privacy-policy__faq-list {
  margin-top: 30px;
}

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

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  color: #F2C14E; /* Gold */
  font-weight: bold;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Border */
}

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

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #57E38D; /* Glow */
}

.page-privacy-policy__faq-answer {
  padding: 15px 20px;
  color: #A7D9B8; /* Text Secondary */
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-image-wrapper {
    height: 350px;
  }
  .page-privacy-policy__hero-content {
    margin-top: -120px;
  }
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__heading {
    font-size: 1.8em;
  }
  .page-privacy-policy__sub-heading {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-image-wrapper {
    height: 250px !important;
  }
  .page-privacy-policy__hero-content {
    margin-top: -80px !important;
    padding: 15px !important;
  }
  .page-privacy-policy__main-title {
    font-size: 1.5em !important;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em !important;
  }
  .page-privacy-policy__heading {
    font-size: 1.6em !important;
  }
  .page-privacy-policy__sub-heading {
    font-size: 1.2em !important;
  }
  .page-privacy-policy__intro-text {
    font-size: 1em !important;
  }
  .page-privacy-policy__paragraph, .page-privacy-policy__list-item {
    font-size: 0.95em !important;
  }
  .page-privacy-policy__container {
    padding: 0 15px !important;
  }
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__content-section,
  .page-privacy-policy__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-privacy-policy__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.3em !important;
  }
  .page-privacy-policy__heading {
    font-size: 1.4em !important;
  }
  .page-privacy-policy__faq-question {
    padding: 12px 15px;
  }
  .page-privacy-policy__faq-answer {
    padding: 12px 15px;
  }
  .page-privacy-policy__hero-image-wrapper {
    height: 200px !important;
  }
  .page-privacy-policy__hero-content {
    margin-top: -60px !important;
  }
}