.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
}

.page-privacy-policy__hero-section {
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover; /* Desktop: cover to fill space */
  display: block;
  margin-bottom: 20px;
  filter: brightness(0.7);
}

.page-privacy-policy__hero-content {
  position: relative; /* Ensure content is in normal flow below image */
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
  margin-top: -100px; /* Pull content up slightly over the image's bottom part */
  background: linear-gradient(to top, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0.5)); /* Dark gradient for readability */
  padding-bottom: 40px;
  border-radius: 8px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 4vw, 3em);
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.2;
}

.page-privacy-policy__subtitle {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.page-privacy-policy__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

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

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

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Primary Color */
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-privacy-policy__text-block {
  margin-bottom: 20px;
  font-size: 1em;
  line-height: 1.8;
  color: #FFF6D6;
}

.page-privacy-policy__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-privacy-policy__list-item {
  background-color: #111111; /* Card BG */
  border-left: 4px solid #F2C14E;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__list-title {
  font-size: 1.3em;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-privacy-policy__list-text {
  font-size: 0.95em;
  color: #FFF6D6;
  line-height: 1.7;
}

.page-privacy-policy__image-content {
  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);
  object-fit: cover;
}

.page-privacy-policy__link-inline {
  color: #F2C14E;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__link-inline:hover {
  color: #FFD36B;
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
}

.page-privacy-policy__contact-list .page-privacy-policy__list-item {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 10px;
}

.page-privacy-policy__contact-list strong {
  color: #FFD36B;
}

.page-privacy-policy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-privacy-policy__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #F2C14E;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #F2C14E; /* Border */
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.page-privacy-policy__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
}

.page-privacy-policy__faq-section {
  background-color: #111111; /* Card BG */
  padding: 60px 0;
  margin-top: 40px;
  border-radius: 10px;
}

.page-privacy-policy__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  overflow: hidden;
  background-color: #0A0A0A;
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  list-style: none;
  font-size: 1.1em;
}

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

.page-privacy-policy__faq-question::marker {
  display: none;
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E;
}

.page-privacy-policy__faq-answer {
  padding: 0 25px 20px;
  color: #FFF6D6;
  font-size: 0.95em;
  line-height: 1.7;
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-question {
  background-color: #1a1a1a;
  color: #F2C14E;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px !important; /* Ensure small top padding */
  }

  .page-privacy-policy__hero-image {
    object-fit: contain !important; /* Mobile: contain to prevent cropping */
    max-height: 300px;
    aspect-ratio: unset;
  }

  .page-privacy-policy__hero-content {
    margin-top: -50px; /* Adjust for smaller screens */
    padding: 0 15px 30px;
  }

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

  .page-privacy-policy__subtitle {
    font-size: 1em;
  }

  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary {
    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;
    text-align: center;
  }

  .page-privacy-policy__cta-buttons {
    flex-direction: column !important;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-privacy-policy__list-title {
    font-size: 1.2em;
  }

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

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

  .page-privacy-policy__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-privacy-policy__faq-answer {
    padding: 0 20px 15px;
  }
}