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

.page-privacy-policy {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-main-color);
  background-color: var(--background-color);
  line-height: 1.6;
  font-size: 16px;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  padding: 40px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--deep-green-bg);
  color: var(--text-main-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 400px;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: 675px; /* Display height for 16:9 aspect ratio if width is 1200 */
  display: block;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  max-width: 1200px;
}

.page-privacy-policy__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-privacy-policy__hero-content h1 {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gold-color);
  line-height: 1.2;
}

.page-privacy-policy__hero-content p {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: var(--text-secondary-color);
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  background: var(--button-gradient);
  color: var(--text-main-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-privacy-policy__content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color);
  border-bottom: 1px solid var(--divider-color);
}

.page-privacy-policy__content-section:last-of-type {
  border-bottom: none;
}

.page-privacy-policy__content-section h2 {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--gold-color);
  margin-bottom: 25px;
  text-align: center;
}

.page-privacy-policy__content-section h3 {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  color: var(--glow-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__content-section p,
.page-privacy-policy__content-section ul,
.page-privacy-policy__content-section ol {
  margin-bottom: 15px;
  color: var(--text-main-color);
}

.page-privacy-policy__content-section ul,
.page-privacy-policy__content-section ol {
  padding-left: 25px;
}

.page-privacy-policy__content-section li {
  margin-bottom: 8px;
  color: var(--text-secondary-color);
}

.page-privacy-policy__content-image {
  width: 800px; /* Display width */
  height: 600px; /* Display height */
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 100%; /* Ensure responsiveness for larger images */
  object-fit: cover;
}

.page-privacy-policy__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color);
}

.page-privacy-policy__faq-section h2 {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--gold-color);
  margin-bottom: 40px;
  text-align: center;
}

.page-privacy-policy__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: var(--text-main-color);
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2); /* var(--border-color) with transparency */
}

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

/* For details tag, hide default marker */
.page-privacy-policy__faq-item summary {
  list-style: none; /* Hide default marker */
}
.page-privacy-policy__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}
.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  content: '−';
}

.page-privacy-policy__faq-answer {
  padding: 0 20px 20px;
  color: var(--text-secondary-color);
  font-size: 0.95em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

/* This class is for JS fallback, but details tag handles it natively */
.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 10px;
}

/* Contact section */
.page-privacy-policy__contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-privacy-policy__contact-section h2 {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--gold-color);
  margin-bottom: 25px;
}

.page-privacy-policy__contact-section p {
  font-size: 1.1em;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 15px;
  }
  .page-privacy-policy__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* Small top padding, body handles header offset */
  }

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

  .page-privacy-policy__hero-content h1 {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-privacy-policy__hero-content p {
    font-size: 1em;
  }

  .page-privacy-policy__content-section,
  .page-privacy-policy__faq-section,
  .page-privacy-policy__contact-section {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__content-section h2,
  .page-privacy-policy__faq-section h2,
  .page-privacy-policy__contact-section h2 {
    font-size: clamp(1.5em, 5vw, 2em);
  }

  .page-privacy-policy__content-section h3 {
    font-size: clamp(1.2em, 4vw, 1.5em);
  }

  .page-privacy-policy p,
  .page-privacy-policy li,
  .page-privacy-policy__faq-answer {
    font-size: 15px;
    line-height: 1.6;
  }

  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-privacy-policy__button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-privacy-policy__faq-question {
    font-size: 1em;
  }
}