.page-privacy-policy {
  color: #333333; /* Default text color for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content starts below fixed header */
  background-color: #FFFFFF;
}

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

.page-privacy-policy__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for hero content */
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.6; /* Slightly dim the image for text readability */
}

.page-privacy-policy__hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  max-width: 90%;
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  position: absolute;
  top: calc(50% + 80px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 1.2em;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  max-width: 80%;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__article {
  margin-bottom: 40px;
}

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

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

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

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

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

.page-privacy-policy__link {
  color: #FCBC45; /* Login button color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  text-decoration: underline;
  color: #e0a53b; /* Slightly darker on hover */
}

.page-privacy-policy__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  border-radius: 8px;
}

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

.page-privacy-policy__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-privacy-policy__button--register {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Text color for register button */
  border: 2px solid #FCBC45;
}

.page-privacy-policy__button--register:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

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

  .page-privacy-policy__hero-description {
    font-size: 1em;
    top: calc(40% + 60px);
  }

  .page-privacy-policy__article-heading {
    font-size: 1.5em;
  }

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

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

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

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

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

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

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

  .page-privacy-policy__hero-description {
    font-size: 0.85em;
    top: calc(35% + 40px);
  }

  .page-privacy-policy__hero-description {
    max-width: 90%;
  }

  .page-privacy-policy__article-heading {
    font-size: 1.3em;
  }

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

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