.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); /* Space for fixed header */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content */
  color: #FFFFFF;
  padding: 0;
}

.page-privacy-policy__hero-container {
  position: relative;
  max-width: 1920px; /* Max width for hero content */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim the image to make text pop */
}

.page-privacy-policy__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

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

.page-privacy-policy__hero-intro {
  font-size: 1.2em;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto;
}

.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: -80px; /* Pull content up slightly over hero */
  position: relative;
  z-index: 1;
}

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

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

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

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-privacy-policy__list-item {
  margin-bottom: 5px;
  color: #333333;
}

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

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

.page-privacy-policy__contact-section {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: #f8f8f8;
  border-radius: 8px;
}

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

.page-privacy-policy__cta-button:hover {
  background-color: #e0a73d;
}

.page-privacy-policy__related-links {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

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

.page-privacy-policy__related-links-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-privacy-policy__related-links-item a {
    display: inline-block;
    background-color: #000000; /* Main brand color */
    color: #FFFFFF; /* White text */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.page-privacy-policy__related-links-item a:hover {
    background-color: #333333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-title {
    font-size: 2em;
  }

  .page-privacy-policy__hero-intro {
    font-size: 1em;
  }

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

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

  .page-privacy-policy__image {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto;
  }

  .page-privacy-policy__related-links-list {
      flex-direction: column;
      align-items: center;
  }
}

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

  .page-privacy-policy__hero-intro {
    font-size: 0.9em;
  }

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