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

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

.page-privacy-policy__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Adjust as needed */
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default for desktop */
  border-radius: 10px;
}

.page-privacy-policy__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-privacy-policy__main-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem); /* Use clamp for H1 */
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  line-height: 1.2;
}

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

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

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-privacy-policy__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 145, 0, 0.4);
}

.page-privacy-policy__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 145, 0, 0.6);
}

.page-privacy-policy__btn-secondary {
  background: transparent;
  color: #FFA53A; /* Auxiliary color */
  border: 2px solid #FFA53A; /* Border color */
}

.page-privacy-policy__btn-secondary:hover {
  background: rgba(255, 165, 58, 0.1);
  color: #FFB04D; /* Glow */
  border-color: #FFB04D;
  transform: translateY(-2px);
}

.page-privacy-policy__content-area {
  padding: 40px 0;
  background: #0D0E12; /* Background */
}

.page-privacy-policy__dark-section {
  background: #0D0E12; /* Background */
  color: #FFF3E6; /* Text Main */
}

.page-privacy-policy__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 30px;
  text-align: left;
  border-bottom: 2px solid #A84F0C; /* Border */
  padding-bottom: 15px;
}

.page-privacy-policy__subsection-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFA53A; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-privacy-policy a {
  color: #FFA53A; /* Auxiliary color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
  color: #FFB04D; /* Glow */
  text-decoration: underline;
}

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

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

.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-privacy-policy__faq-section {
  padding: 40px 0;
  background: #17191F; /* Card BG */
}

details.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  background: #0D0E12; /* Background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #FFF3E6; /* Text Main */
  font-weight: 600;
}

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, 165, 58, 0.1);
  color: #FFB04D; /* Glow */
}

.page-privacy-policy__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
  color: inherit;
}

.page-privacy-policy__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFA53A; /* Auxiliary color */
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

details[open] .page-privacy-policy__faq-toggle {
  transform: rotate(45deg);
}

details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
  padding: 0 25px 25px;
  background: rgba(255, 255, 255, 0.03); /* Slightly lighter background for answer */
  border-radius: 0 0 8px 8px;
  color: #FFF3E6; /* Text Main */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-privacy-policy__container {
    padding: 15px;
  }

  .page-privacy-policy__hero-image-wrapper {
    max-height: 500px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .page-privacy-policy__description {
    font-size: 1rem;
  }

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

  .page-privacy-policy__subsection-title {
    font-size: 1.4rem;
  }

  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary {
    padding: 10px 25px;
    font-size: 0.95rem;
  }

  details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
    padding: 15px 20px;
  }

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

  .page-privacy-policy__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
  }

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

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-privacy-policy__hero-image-wrapper {
    max-height: 400px;
  }

  .page-privacy-policy__hero-image {
    object-fit: contain !important; /* Mobile: contain to avoid cropping */
    aspect-ratio: unset !important; /* Mobile: unset aspect ratio */
    width: 100% !important;
    height: auto !important;
  }

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

  .page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    text-align: center;
    max-width: 100% !important;
  }

  .page-privacy-policy__description {
    font-size: 0.95rem;
    text-align: center;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

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

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

  .page-privacy-policy__section-title {
    font-size: 1.8rem;
    text-align: center;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__subsection-title {
    font-size: 1.2rem;
    text-align: center;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  .page-privacy-policy p,
  .page-privacy-policy li {
    font-size: 0.9rem;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__list {
    margin-left: 20px;
    max-width: 100% !important;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

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

  details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
    padding: 15px;
  }

  .page-privacy-policy__faq-qtext {
    font-size: 0.95rem;
  }

  .page-privacy-policy__faq-toggle {
    font-size: 22px;
    margin-left: 10px;
    width: 25px;
  }

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

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