.page-privacy-policy {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-privacy-policy__hero-section {
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF; /* White text for dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

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

.page-privacy-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire hero section */
  opacity: 0.3; /* Subtle background effect */
  display: block;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-privacy-policy__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-top: -60px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 2;
}

.page-privacy-policy__article {
  padding: 20px 0;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.6em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-privacy-policy__inline-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__inline-link:hover {
  text-decoration: underline;
}

.page-privacy-policy__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-privacy-policy__illustration-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it's a block element */
  margin: 0 auto;
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

.page-privacy-policy__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 50px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 60px;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-privacy-policy__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for light button */
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-right: 15px;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-privacy-policy__cta-link {
  color: #FFFFFF;
  text-decoration: underline;
  font-size: 1em;
  transition: color 0.3s ease;
}

.page-privacy-policy__cta-link:hover {
  color: #FCBC45;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }

  .page-privacy-policy__main-title {
    font-size: 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;
    margin-top: -30px;
  }

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

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

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

  .page-privacy-policy__cta-title {
    font-size: 2em;
  }

  .page-privacy-policy__cta-button {
    padding: 15px 25px;
    font-size: 1.1em;
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .page-privacy-policy__cta-link {
    display: block;
  }

  /* Ensure all images in content area are responsive and not too small */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min-width for mobile */
    min-height: 200px; /* Enforce min-height for mobile */
  }
}