/* style/privacy-policy.css */

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

.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--f68-text-main); /* Default text color for dark background */
  background-color: var(--f68-background);
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--f68-background);
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
}

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

.page-privacy-policy__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  padding: 0 15px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em); /* Responsive font size */
  color: var(--f68-text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: 1.1em;
  color: var(--f68-text-secondary);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-privacy-policy__content-section {
  padding: 40px 20px;
  background-color: var(--f68-background);
  color: var(--f68-text-main);
}

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

.page-privacy-policy__section-title {
  font-size: clamp(1.8em, 2.8vw, 2.5em); /* Responsive font size */
  color: var(--f68-primary-green);
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 2px solid var(--f68-divider);
  padding-bottom: 10px;
}

.page-privacy-policy__subsection-title {
  font-size: clamp(1.4em, 2.2vw, 1.8em); /* Responsive font size */
  color: var(--f68-text-main);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-privacy-policy__text-block {
  margin-bottom: 20px;
  color: var(--f68-text-secondary);
  font-size: 1em;
}

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

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

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

.page-privacy-policy__link {
  color: var(--f68-secondary-green);
  text-decoration: underline;
}

.page-privacy-policy__link:hover {
  color: var(--f68-glow);
  text-decoration: none;
}

.page-privacy-policy__keyword {
  color: var(--f68-primary-green);
  font-weight: bold;
}

.page-privacy-policy__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__faq-item {
  background-color: var(--f68-card-bg);
  border: 1px solid var(--f68-border);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 15px 20px;
  color: var(--f68-text-main);
}

.page-privacy-policy__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--f68-text-main);
}

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

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-privacy-policy__faq-qtext {
  flex-grow: 1;
  color: var(--f68-text-main);
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: var(--f68-secondary-green);
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  content: '−';
}

.page-privacy-policy__faq-answer {
  padding-top: 15px;
  color: var(--f68-text-secondary);
  font-size: 0.95em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-section {
    padding: 40px 15px;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(2em, 4vw, 3em);
  }
  .page-privacy-policy__section-title {
    font-size: clamp(1.6em, 3vw, 2.2em);
  }
  .page-privacy-policy__subsection-title {
    font-size: clamp(1.2em, 2.5vw, 1.6em);
  }
}

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

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

  .page-privacy-policy__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-privacy-policy__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-privacy-policy__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-privacy-policy__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-privacy-policy__text-block {
    font-size: 0.95em;
  }

  .page-privacy-policy__list {
    margin-left: 20px;
  }

  .page-privacy-policy__list-item {
    font-size: 0.95em;
  }

  .page-privacy-policy__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-privacy-policy__faq-item {
    padding: 12px 15px;
  }

  .page-privacy-policy__faq-item summary {
    font-size: 1em;
  }

  .page-privacy-policy__faq-toggle {
    font-size: 1.3em;
  }

  .page-privacy-policy__faq-answer {
    padding-top: 10px;
    font-size: 0.9em;
  }
}