/* style/privacy-policy.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --background-color: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

.page-privacy-policy__hero-banner {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, body handles header offset */
  margin-bottom: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6);
}

.page-privacy-policy__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: var(--text-main-color);
}

.page-privacy-policy__main-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--text-main-color);
}

.page-privacy-policy__subtitle {
  font-size: 1.2em;
  line-height: 1.5;
  color: var(--text-secondary-color);
  max-width: 700px;
  margin: 0 auto;
}

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

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

.page-privacy-policy__article {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: var(--text-main-color);
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 2px solid var(--divider-color);
  padding-bottom: 10px;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.6em;
  color: var(--glow-color);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  color: var(--text-secondary-color);
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  color: var(--text-secondary-color);
}

.page-privacy-policy__list-item strong {
  color: var(--text-main-color);
}

.page-privacy-policy__link {
  color: var(--glow-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* FAQ Section */
.page-privacy-policy__faq-section {
  margin-top: 40px;
  margin-bottom: 40px;
}

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

details.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main-color);
}

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

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question:hover {
  background: var(--deep-green-color);
}

.page-privacy-policy__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color);
}

.page-privacy-policy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--glow-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
  padding: 0 25px 20px;
  background: var(--background-color);
  border-radius: 0 0 8px 8px;
  color: var(--text-secondary-color);
}

.page-privacy-policy__faq-answer p {
  margin: 0;
  color: var(--text-secondary-color);
}

/* CTA Section */
.page-privacy-policy__cta-section {
  background-color: var(--deep-green-color);
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__cta-section .page-privacy-policy__section-title {
  color: var(--text-main-color);
  border-bottom: none;
  margin-top: 0;
  padding-bottom: 0;
}

.page-privacy-policy__cta-section .page-privacy-policy__paragraph {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: var(--text-secondary-color);
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: var(--text-main-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  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 {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-privacy-policy__main-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__subtitle {
    font-size: 1em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 1.4em;
  }
  .page-privacy-policy__article {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-banner {
    padding-top: 10px !important;
    min-height: 250px;
  }
  .page-privacy-policy__main-title {
    font-size: 1.8em; /* Adjusted for mobile readability */
    margin-bottom: 10px;
  }
  .page-privacy-policy__subtitle {
    font-size: 0.9em;
  }
  .page-privacy-policy__content-section {
    padding: 30px 0;
  }
  .page-privacy-policy__container {
    padding: 0 15px;
  }
  .page-privacy-policy__article {
    padding: 20px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .page-privacy-policy__list {
    margin-left: 20px;
  }
  .page-privacy-policy__list-item {
    font-size: 0.95em;
  }
  .page-privacy-policy__cta-section {
    padding: 40px 15px;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Image responsive */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset !important; /* Allow smaller on mobile */
    min-height: unset !important; /* Allow smaller on mobile */
  }
  .page-privacy-policy__section, .page-privacy-policy__card, .page-privacy-policy__container, .page-privacy-policy__article, .page-privacy-policy__faq-item, .page-privacy-policy__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-privacy-policy__hero-banner {
    padding-left: 0;
    padding-right: 0;
  }
  .page-privacy-policy__hero-content {
    padding: 15px;
  }
  details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
    padding: 15px 20px;
  }
  .page-privacy-policy__faq-qtext {
    font-size: 1em;
  }
  details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.6em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.3em;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 1.1em;
  }
  .page-privacy-policy__cta-button {
    font-size: 0.95em;
  }
}