.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #FFFFFF); /* Inherit from shared or default white */
}

.page-privacy-policy__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  margin-bottom: 40px;
  text-align: center;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for the image */
  overflow: hidden;
  margin-bottom: 20px;
}

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

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

.page-privacy-policy__main-title {
  font-size: clamp(2em, 3.5vw, 2.8em); /* Responsive font size for H1 */
  color: #26A9E0; /* Brand color for main title */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-align: center;
}

.page-privacy-policy__hero-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-privacy-policy__content-section {
  padding: 40px 0;
  margin-bottom: 40px;
}

.page-privacy-policy__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-privacy-policy__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.7;
  color: #333333;
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
}

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

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

.page-privacy-policy__link:hover {
  text-decoration: none;
}

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 800px; /* Max width for content images */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-privacy-policy__contact-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-privacy-policy__contact-item strong {
  color: #26A9E0;
}

.page-privacy-policy__contact-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  overflow: hidden;
}

.page-privacy-policy__contact-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-privacy-policy__btn-primary {
  display: block;
  width: fit-content;
  margin: 30px auto;
  padding: 12px 25px;
  background-color: #26A9E0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%; /* Button responsive */
  box-sizing: border-box; /* Button responsive */
  white-space: normal; /* Button text wrapping */
  word-wrap: break-word; /* Button text wrapping */
}

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

/* --- Responsive Styles for Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: 10px !important; /* Small top padding */
    margin-bottom: 20px;
  }

  .page-privacy-policy__hero-image {
    object-fit: contain !important; /* Ensure main image is fully visible */
    aspect-ratio: unset !important; /* Remove aspect ratio if set elsewhere */
    max-height: none !important; /* Remove max-height if set elsewhere */
  }

  .page-privacy-policy__main-title {
    font-size: 2em;
    margin-bottom: 10px;
  }

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

  .page-privacy-policy__content-section {
    padding: 20px 0;
    margin-bottom: 20px;
  }

  .page-privacy-policy__section-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

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

  /* General images and containers responsive */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Ensure minimum size on mobile */
    min-height: 200px !important; /* Ensure minimum size on mobile */
  }
  
  .page-privacy-policy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons and button containers responsive */
  .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-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Placeholder for game grid if it were present */
  .page-privacy-policy__game-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .page-privacy-policy__game-tile {
    aspect-ratio: 1/1 !important;
  }
  /* Placeholder for winner list if it were present */
  .page-privacy-policy__winner-list {
    grid-template-columns: 1fr !important;
  }
}

/* Additional responsive styles for larger screens if needed, but 768px is the critical breakpoint */
@media (max-width: 1024px) {
  .page-privacy-policy__container {
    padding: 0 20px;
  }
  .page-privacy-policy__hero-image-wrapper {
    max-width: 1000px;
  }
  .page-privacy-policy__hero-content {
    max-width: 700px;
  }
}