.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Dark body background #0a0a0a, so light text */
  background-color: transparent; /* Main content background will be transparent, relying on body bg */
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: #0a0a0a; /* Ensure hero section has dark background if body is transparent */
  color: #ffffff;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 30px; /* Space between image and text */
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 20px;
  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: #f0f0f0;
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-privacy-policy__btn-primary:hover {
  background-color: #d16b06;
}

.page-privacy-policy__section {
  padding: 50px 20px;
  background-color: #1a1a1a; /* Darker background for sections */
  margin-bottom: 20px; /* Space between sections */
  border-radius: 8px;
}

.page-privacy-policy__section:last-of-type {
  margin-bottom: 0;
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Inner padding for content */
}

.page-privacy-policy__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #26A9E0; /* Brand color for section titles */
  margin-bottom: 30px;
  text-align: left;
  font-weight: 600;
}

.page-privacy-policy__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 500;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

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

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

.page-privacy-policy__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 800px; /* Ensure content images are not too wide */
}

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

.page-privacy-policy__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #f0f0f0;
}

.page-privacy-policy__contact-link {
  color: #26A9E0; /* Brand color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: #1e87b7;
  text-decoration: underline;
}

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

.page-privacy-policy__faq-item {
  background-color: #2a2a2a; /* Slightly lighter dark for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__faq-item summary {
  list-style: none; /* Remove default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #333333; /* Darker background for question */
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for webkit browsers */
}

.page-privacy-policy__faq-item summary:hover {
  background-color: #444444;
}

.page-privacy-policy__faq-qtext {
  flex-grow: 1;
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0; /* Brand color for toggle icon */
}

.page-privacy-policy__faq-answer {
  padding: 20px;
  padding-top: 0; /* Adjust padding for smooth transition */
  color: #f0f0f0;
  font-size: 1rem;
}

/* Ensure details open/close smoothly without max-height */
.page-privacy-policy__faq-item[open] summary {
  background-color: #444444;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

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

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

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

  .page-privacy-policy__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 20px;
  }

  .page-privacy-policy__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .page-privacy-policy p,
  .page-privacy-policy__list li,
  .page-privacy-policy__contact-list li,
  .page-privacy-policy__faq-item summary,
  .page-privacy-policy__faq-answer {
    font-size: 15px;
  }

  /* Mobile image responsiveness */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__hero-image-wrapper,
  .page-privacy-policy__hero-content,
  .page-privacy-policy__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button container mobile adaptation */
  .page-privacy-policy__hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Space between title, description and button */
  }
  
  .page-privacy-policy__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

/* Color Contrast Enforcement */
.page-privacy-policy__dark-bg {
  background: #0a0a0a; /* Body background */
  color: #ffffff; /* Light text */
}

.page-privacy-policy__section {
  background: #1a1a1a; /* Darker section background */
  color: #f0f0f0; /* Light text */
}

.page-privacy-policy__faq-item {
  background-color: #2a2a2a;
}

.page-privacy-policy__faq-item summary {
  background-color: #333333;
}

.page-privacy-policy__faq-item summary:hover {
  background-color: #444444;
}

.page-privacy-policy__btn-primary {
  background: #EA7C07; /* Login color */
  color: #ffffff;
}

.page-privacy-policy a {
  color: #26A9E0; /* Brand blue for links */
}

/* Ensure content area images don't go below 200px */
.page-privacy-policy__content-area img,
.page-privacy-policy__section img {
    min-width: 200px;
    min-height: 200px;
}