.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css var(--bg-dark) */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-privacy-policy__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffc107; /* Highlight with auxiliary color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-privacy-policy__hero-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: rgba(13, 13, 13, 0.9); /* Slightly lighter dark background for content */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 15px;
}

.page-privacy-policy__subsection-title {
  font-size: 1.6em;
  color: #ffc107;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-privacy-policy__sub-subsection-title {
  font-size: 1.3em;
  color: #ffffff;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-privacy-policy__text-block p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

.page-privacy-policy__list-item strong {
  color: #ffc107;
}

.page-privacy-policy a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
  color: #ffc107;
  text-decoration: underline;
}

/* FAQ Section */
.page-privacy-policy__faq-section {
  margin-top: 40px;
}

.page-privacy-policy__faq-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(0, 123, 255, 0.1); /* Light blue tint for question */
  transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
  background-color: rgba(0, 123, 255, 0.2);
}

.page-privacy-policy__faq-question h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2em;
}

.page-privacy-policy__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #ffc107;
  transition: transform 0.3s ease;
}

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

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 2.4em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1.1em;
  }
  .page-privacy-policy__section-title {
    font-size: 2em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-privacy-policy__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-privacy-policy__hero-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em;
  }
  .page-privacy-policy__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-privacy-policy__content-area {
    padding: 40px 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.4em;
  }
  .page-privacy-policy__sub-subsection-title {
    font-size: 1.2em;
  }
  .page-privacy-policy__faq-question h3 {
    font-size: 1em;
  }
  
  /* Image and Video Responsiveness */
  .page-privacy-policy img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-privacy-policy video,
  .page-privacy-policy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-area,
  .page-privacy-policy__faq-section,
  .page-privacy-policy__faq-item,
  .page-privacy-policy__text-block,
  .page-privacy-policy__list,
  .page-privacy-policy__list-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-privacy-policy__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-privacy-policy__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Button Responsiveness */
  .page-privacy-policy__hero-button,
  .page-privacy-policy a[class*="button"],
  .page-privacy-policy a[class*="btn"] {
    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;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-section {
    height: 400px;
  }
  .page-privacy-policy__hero-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__hero-description {
    font-size: 0.9em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.2em;
  }
  .page-privacy-policy__faq-question h3 {
    font-size: 0.9em;
  }
  .page-privacy-policy__faq-toggle {
    font-size: 1.5em;
  }
}

/* Color Contrast Fixes (if needed, based on background analysis) */
.page-privacy-policy__dark-bg {
  color: #ffffff; /* Deep dark background with light text */
  background: #0d0d0d;
}

.page-privacy-policy__light-bg {
  color: #333333; /* Light background with dark text */
  background: #ffffff;
}

.page-privacy-policy__medium-bg {
  color: #000000; /* Medium background, default dark text */
  background: #ffc107;
}

.page-privacy-policy__text-block p,
.page-privacy-policy__list-item {
  color: #e0e0e0; /* Ensure readability on dark content background */
}

.page-privacy-policy__btn-primary {
  background: #007bff;
  color: #ffffff;
  border: 2px solid transparent;
}

.page-privacy-policy__btn-secondary {
  background: #ffffff;
  color: #007bff;
  border: 2px solid #007bff;
}