.page-privacy-policy {
  color: #ffffff; /* Light text for dark body background */
  background-color: #000000; /* Ensuring content area matches body background */
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Minimum height for hero section */
}

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

.page-privacy-policy__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF; /* White for main title */
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-privacy-policy__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.5;
}

.page-privacy-policy__register-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-privacy-policy__register-button:hover {
  background-color: #e0a53b; /* Slightly darker on hover */
  transform: translateY(-2px);
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #000000; /* Ensure content area background is dark */
}

.page-privacy-policy__section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for sections for subtle contrast */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  color: #FCBC45; /* Accent color for main section titles */
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.8em;
  color: #FFFFFF; /* White for sub-section titles */
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #f0f0f0; /* Slightly off-white for body text */
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-privacy-policy__link {
  color: #FCBC45; /* Accent color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #e0a53b;
  text-decoration: underline;
}

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  max-width: 600px; /* Limit image width for better flow */
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-privacy-policy__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.1); /* Slightly distinct background */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__call-to-action-text {
  font-size: 1.6em;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.page-privacy-policy__register-button--bottom {
  background-color: #FCBC45;
  color: #000000;
}

.page-privacy-policy__register-button--bottom:hover {
  background-color: #e0a53b;
}

/* Clearfix for floated images */
.page-privacy-policy__section::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 2.8em;
  }

  .page-privacy-policy__intro-text {
    font-size: 1.2em;
  }

  .page-privacy-policy__section-title {
    font-size: 2.2em;
  }

  .page-privacy-policy__sub-section-title {
    font-size: 1.6em;
  }

  .page-privacy-policy__image--left,
  .page-privacy-policy__image--right {
    float: none;
    margin: 20px auto;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    min-height: 400px;
  }

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

  .page-privacy-policy__main-title {
    font-size: 2.2em;
  }

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

  .page-privacy-policy__register-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__sub-section-title {
    font-size: 1.4em;
  }

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

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

  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    margin: 20px auto; /* Center images on mobile */
  }
  
  /* Critical: prevent content overflow on mobile */
  .page-privacy-policy img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-privacy-policy__call-to-action {
    padding: 30px 15px;
  }

  .page-privacy-policy__call-to-action-text {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }

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

  .page-privacy-policy__register-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-privacy-policy__sub-section-title {
    font-size: 1.2em;
  }

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

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

  .page-privacy-policy__call-to-action-text {
    font-size: 1.1em;
  }
}