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

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body already handles header offset, small top padding */
  overflow: hidden;
  background-color: var(--card-bg);
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-privacy-policy__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

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

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

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

.page-privacy-policy__section-intro {
  margin-bottom: 50px;
  text-align: center;
}

.page-privacy-policy__section-title {
  color: var(--text-main);
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.page-privacy-policy__section-block {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__sub-title {
  color: var(--text-main);
  font-size: clamp(1.5em, 3vw, 2.2em);
  font-weight: 600;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--divider);
  padding-bottom: 10px;
}

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

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  font-size: 1em;
}

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

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 30px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

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

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

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main);
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--divider);
  list-style: none; /* For details summary */
}

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

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

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

.page-privacy-policy__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: var(--text-secondary);
}

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

.page-privacy-policy a {
  color: var(--glow);
  text-decoration: none;
}

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

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-content {
    max-width: 768px;
  }
  .page-privacy-policy__content-area,
  .page-privacy-policy__faq-section {
    padding: 40px 15px;
  }
  .page-privacy-policy__section-block {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-privacy-policy__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-privacy-policy__hero-content {
    padding: 0 15px;
  }
  .page-privacy-policy__main-title {
    font-size: 1.8em; /* Adjusted for mobile */
  }
  .page-privacy-policy__description {
    font-size: 1em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.6em; /* Adjusted for mobile */
  }
  .page-privacy-policy__sub-title {
    font-size: 1.3em; /* Adjusted for mobile */
  }
  .page-privacy-policy__section-block {
    padding: 20px;
    margin-bottom: 30px;
  }
  .page-privacy-policy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-privacy-policy__content-area,
  .page-privacy-policy__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-privacy-policy__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-privacy-policy__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-privacy-policy__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-privacy-policy__faq-toggle {
    font-size: 1.2em;
  }
}