.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background: #0A0A0A; /* Background */
}

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

.page-privacy-policy__hero-section {
  position: relative;
  padding-top: 10px; /* Minimal top padding, assume body handles header offset */
  background: #0A0A0A;
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  height: 600px; /* Default height for desktop */
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover for desktop */
  display: block;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow color for emphasis */
  line-height: 1.2;
}

.page-privacy-policy__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

.page-privacy-policy__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #3A2A12; /* Border */
}

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

.page-privacy-policy__dark-section {
  background: #111111; /* Card BG */
}

.page-privacy-policy__section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #FFD36B; /* Glow color */
  margin-bottom: 30px;
  text-align: center;
}

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

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

.page-privacy-policy__list-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  color: #FFF6D6;
}

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

.page-privacy-policy__list-item p {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 0;
}

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

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

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-privacy-policy__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #ffffff;
  border: none;
}

.page-privacy-policy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow color */
  border: 2px solid #FFD36B; /* Glow color border */
}

.page-privacy-policy__btn-secondary:hover {
  transform: translateY(-3px);
  background: #FFD36B;
  color: #111111;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__contact-link {
  color: #FFD36B; /* Glow color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  text-decoration: underline;
  color: #F2C14E; /* Main color */
}

/* FAQ Styles */
details.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
}

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

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: rgba(255, 211, 107, 0.1); /* Lighter hover for dark background */
}

.page-privacy-policy__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B; /* Glow color for questions */
}

.page-privacy-policy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B; /* 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 20px 20px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
}

.page-privacy-policy__faq-answer p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #FFF6D6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-privacy-policy__description {
    font-size: 1.05rem;
  }
  .page-privacy-policy__section-title {
    font-size: 2rem;
  }
  .page-privacy-policy__hero-image-wrapper {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-privacy-policy__hero-section {
    padding-top: 10px; /* Consistent small top padding */
  }

  .page-privacy-policy__hero-image-wrapper {
    height: 300px !important; /* Shorter hero image for mobile */
  }

  .page-privacy-policy__hero-image {
    object-fit: contain !important; /* Ensure image is fully visible, no cropping */
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-privacy-policy__hero-content {
    padding: 30px 15px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    margin-bottom: 15px;
  }

  .page-privacy-policy__description {
    font-size: 1rem !important;
    margin-bottom: 20px;
  }

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

  .page-privacy-policy__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 25px;
  }

  .page-privacy-policy__text-block {
    font-size: 0.95rem !important;
  }

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

  .page-privacy-policy__list-title {
    font-size: 1.15rem !important;
    margin-bottom: 8px;
  }

  .page-privacy-policy__list-item p {
    font-size: 0.9rem !important;
  }

  .page-privacy-policy__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

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

  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary,
  .page-privacy-policy a[class*="button"],
  .page-privacy-policy a[class*="btn"] {
    padding: 12px 20px !important;
    font-size: 1rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0;
  }

  details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
    padding: 15px !important;
  }
  .page-privacy-policy__faq-qtext {
    font-size: 1rem !important;
  }
  .page-privacy-policy__faq-toggle {
    font-size: 20px !important;
    width: 24px !important;
    height: 24px !important;
  }
  details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
    padding: 0 15px 15px !important;
  }
}