.page-privacy-policy {
  background-color: #100224; /* Deep purple-black background from WOW88 style */
  color: #FFFFFF; /* White text for contrast */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 20px; /* Small padding at bottom */
}

.page-privacy-policy__hero-section {
  display: flex;
  flex-direction: column; /* Stacks image above text on all screens */
  align-items: center;
  padding-top: 10px; /* Small padding-top to account for header offset, as per rules */
  padding-bottom: 40px;
  background-color: #100224;
  overflow: hidden; /* Prevent content overflow */
}

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

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-privacy-policy__hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2rem, 4vw, 3rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0; /* Primary color for main title */
  margin-bottom: 15px;
}

.page-privacy-policy__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-privacy-policy__content-area {
  padding: 40px 20px;
}

.page-privacy-policy__container {
  max-width: 960px;
  margin: 0 auto;
  background-color: #1A202C; /* Slightly lighter dark background for content blocks */
  padding: 30px;
  border-radius: 8px;
}

.page-privacy-policy__section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #26A9E0; /* Primary color for section titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__section-title:first-of-type {
  margin-top: 0;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  color: #E0E0E0;
}

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

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

.page-privacy-policy__link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-privacy-policy__link:hover {
  color: #EA7C07; /* Login orange for hover */
}

.page-privacy-policy__contact-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-privacy-policy__contact-button {
  display: inline-block;
  background-color: #EA7C07; /* Login orange for button */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-height: 44px; /* Ensure touch target size */
  line-height: 20px;
}

.page-privacy-policy__contact-button:hover {
  background-color: #FF8C00;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-privacy-policy__hero-content {
    padding: 0 15px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

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

  .page-privacy-policy__content-area {
    padding: 20px 15px;
  }

  .page-privacy-policy__container {
    padding: 20px;
  }

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

  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 0.95rem;
  }

  /* Ensure content images are responsive and not smaller than 200px */
  .page-privacy-policy__content-area img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Minimum display size for content images */
    min-height: 200px; /* Minimum display size for content images */
    object-fit: contain; /* Adjust object-fit for smaller screens if needed */
  }
}

@media (max-width: 549px) {
  .page-privacy-policy__hero-section {
    padding-bottom: 20px;
  }

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

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

  .page-privacy-policy__intro-text {
    font-size: 0.9rem;
  }

  .page-privacy-policy__content-area {
    padding: 15px 10px;
  }

  .page-privacy-policy__container {
    padding: 15px;
  }

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

  .page-privacy-policy__contact-button {
    width: 100%;
    max-width: 280px;
  }

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