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

.page-privacy-policy__hero-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden; /* Prevent image overflow */
}

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

.page-privacy-policy__main-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__hero-image-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.page-privacy-policy__hero-image {
  width: 100%;
  max-width: 1000px; /* Constrain hero image width */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: -60px; /* Overlap with hero section slightly */
  position: relative;
  z-index: 2;
}

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

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

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

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

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

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

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

.page-privacy-policy__content-image {
  width: 100%;
  max-width: 800px; /* Ensure content images are not too wide */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__cta-section {
  background-color: #000000;
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  margin-top: 60px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-text {
  font-size: 1.8em;
  margin-bottom: 30px;
  font-weight: bold;
  color: #ffffff;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-privacy-policy__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-privacy-policy__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

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

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

.page-privacy-policy__contact-list .page-privacy-policy__list-item a {
  color: #FCBC45; /* Link color for contact details */
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__contact-list .page-privacy-policy__list-item a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: var(--header-offset, 80px);
  }

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

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

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

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

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

  .page-privacy-policy__cta-button {
    display: block;
    margin: 15px auto;
  }

  /* Mobile content area image resizing */
  .page-privacy-policy__content-area img {
    max-width: 100%;
    height: auto;
  }

  .page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-area {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-privacy-policy__content-area {
    margin-top: -30px;
  }
}

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

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

  .page-privacy-policy__cta-text {
    font-size: 1.4em;
  }

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