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

/* Hero Section */
.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #0A4B2C; /* Deep Green for hero background */
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-privacy-policy__hero-image {
  width: 1920px;
  height: 1080px;
  object-fit: cover;
  max-width: 100%; /* Ensure responsiveness */
  margin-top: 20px;
  border-radius: 10px;
  display: block;
}

.page-privacy-policy__hero-content {
  text-align: center;
  max-width: 900px;
  margin-bottom: 20px;
  z-index: 1; /* Ensure text is above image if any overlap */
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-privacy-policy__subtitle {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #A7D9B8; /* Text Secondary */
  max-width: 700px;
  margin: 0 auto;
}

/* General Section Styling */
.page-privacy-policy__section {
  padding: 40px 20px;
  background-color: #08160F; /* Background */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

.page-privacy-policy__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 600;
  color: #57E38D; /* Glow */
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1E3A2A; /* Divider */
}

.page-privacy-policy__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  font-weight: 600;
  color: #22C768; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__text-block p {
  margin-bottom: 1em;
  color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__text-block ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__text-block li {
  margin-bottom: 0.5em;
  color: #A7D9B8; /* Text Secondary */
}

.page-privacy-policy__text-block strong {
  color: #F2C14E; /* Gold */
}

.page-privacy-policy__image-content {
  width: 800px;
  height: 600px;
  object-fit: cover;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Ensure responsiveness */
}

.page-privacy-policy a {
  color: #22C768; /* Auxiliary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
  color: #57E38D; /* Glow on hover */
  text-decoration: underline;
}

/* Buttons */
.page-privacy-policy__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
  margin-right: 15px;
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-privacy-policy__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4); /* Glow effect */
}

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

.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-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid transparent; /* default */
  transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-privacy-policy__faq-item[open] > .page-privacy-policy__faq-question {
  background-color: #0A4B2C; /* Deep Green for active FAQ */
  border-bottom-color: #2E7A4E; /* Border */
}

.page-privacy-policy__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker */
}

.page-privacy-policy__faq-qtext {
  flex-grow: 1;
  font-size: clamp(1em, 1.8vw, 1.1em);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-privacy-policy__subtitle {
    font-size: clamp(0.9em, 4vw, 1.1em);
  }

  .page-privacy-policy__section {
    padding: 30px 0;
  }

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

  .page-privacy-policy__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 20px;
  }

  .page-privacy-policy__sub-title {
    font-size: clamp(1.2em, 5vw, 1.6em);
    margin-top: 20px;
    margin-bottom: 10px;
  }

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

  /* Images responsiveness */
  .page-privacy-policy__hero-image,
  .page-privacy-policy__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-left: 0;
    margin-right: 0;
  }

  /* Button responsiveness */
  .page-privacy-policy__btn-primary {
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-privacy-policy__text-block a.page-privacy-policy__btn-primary {
    margin-left: auto;
    margin-right: auto;
  }

  /* Ensure all content containers are responsive */
  .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;
  }

  /* FAQ responsiveness */
  .page-privacy-policy__faq-question {
    padding: 12px 15px;
  }
  .page-privacy-policy__faq-qtext {
    font-size: clamp(0.9em, 4vw, 1em);
  }
  .page-privacy-policy__faq-toggle {
    font-size: 1.2em;
  }
  .page-privacy-policy__faq-answer {
    padding: 12px 15px 15px;
    font-size: 0.9em;
  }
}