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

.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  max-height: 700px; /* Limit height for visual balance */
  object-fit: cover;
  display: block;
}

.page-privacy-policy__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  padding: 20px;
  background: rgba(17, 17, 17, 0.7); /* Card BG with transparency */
  border-radius: 10px;
  z-index: 10; /* Ensure content is above image */
  box-sizing: border-box;
}

/* Ensure text does not overlap image in normal flow */
.page-privacy-policy__hero-section .page-privacy-policy__hero-image + .page-privacy-policy__hero-content {
    position: static;
    transform: none;
    margin-top: 20px; /* Space between image and content in column flow */
}

.page-privacy-policy__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2C14E; /* Main Color */
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Gradient */
  color: #ffffff; /* White text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

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

.page-privacy-policy__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #F2C14E; /* Main Color */
  margin-bottom: 25px;
  font-weight: 700;
}

.page-privacy-policy__section {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__sub-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #FFD36B; /* Auxiliary Color / Glow */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  color: #FFF6D6; /* Text Main */
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-privacy-policy__list li {
  margin-bottom: 10px;
  color: #FFF6D6; /* Text Main */
}

.page-privacy-policy__list li strong {
  color: #F2C14E; /* Main Color */
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  display: block;
  object-fit: cover;
}

.page-privacy-policy__section a {
  color: #F2C14E; /* Main Color */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__section a:hover {
  color: #FFD36B; /* Glow */
}

.page-privacy-policy__faq-section {
  margin-top: 60px;
}

.page-privacy-policy__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
  background-color: #222222;
}

.page-privacy-policy__faq-question h3 {
  margin: 0;
  color: #F2C14E; /* Main Color */
  font-size: 1.2rem;
  font-weight: 600;
}

.page-privacy-policy__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  transition: transform 0.3s ease;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
  transform: rotate(45deg);
}

.page-privacy-policy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to ensure content is visible */
  padding: 15px 20px 20px;
}

.page-privacy-policy__contact-section {
  text-align: center;
  padding: 40px;
  margin-top: 60px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-content {
    position: static;
    transform: none;
    width: calc(100% - 30px);
    margin: 20px 15px;
    padding: 20px;
    background: rgba(17, 17, 17, 0.9); /* Slightly less transparent on mobile */
  }

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

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

  .page-privacy-policy__main-title {
    font-size: 2rem;
  }

  .page-privacy-policy__hero-description {
    font-size: 0.9rem;
  }

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

  .page-privacy-policy p,
  .page-privacy-policy li {
    font-size: 15px;
  }

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

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

  .page-privacy-policy__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  .page-privacy-policy__faq-question h3 {
    font-size: 1rem;
  }

  .page-privacy-policy__faq-toggle {
    font-size: 1.5rem;
  }
}