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

.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background for hero image */
  padding: 0;
}

.page-privacy-policy__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 20px;
  color: #ffffff;
  z-index: 1;
}

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

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold accent */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px auto;
  position: relative;
  z-index: 2;
}

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

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

.page-privacy-policy__section-heading {
  font-size: 1.8em;
  color: #B80000; /* Main brand color */
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 20px;
  font-size: 1em;
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
}

.page-privacy-policy__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

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

.page-privacy-policy__link:hover {
  color: #FFD700;
}

.page-privacy-policy__contact-button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-privacy-policy__contact-button,
.page-privacy-policy__register-button,
.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #B80000; /* Main brand color */
  color: #ffffff;
  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;
  border: none;
  cursor: pointer;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-privacy-policy__contact-button:hover,
.page-privacy-policy__register-button:hover,
.page-privacy-policy__cta-button:hover {
  background-color: #FFD700; /* Gold accent on hover */
  color: #B80000;
  transform: translateY(-3px);
}

.page-privacy-policy__cta-section {
  background: linear-gradient(135deg, #B80000, #8a0000);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  margin-top: 40px;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

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

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

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

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

  .page-privacy-policy__content-area,
  .page-privacy-policy__hero-container,
  .page-privacy-policy__cta-section {
    padding: 20px 15px;
  }

  .page-privacy-policy__contact-button-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .page-privacy-policy__contact-button,
  .page-privacy-policy__register-button,
  .page-privacy-policy__cta-button {
    width: 100%;
    max-width: 300px; /* Constrain width on mobile */
  }

  /* Mobile content area images must not overflow */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }
  .page-privacy-policy {
    overflow-x: hidden;
  }
}

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

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

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