.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); /* Ensure content is not hidden by fixed header */
}

.page-privacy-policy__hero-section {
  background-color: #0A192F; /* Main brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.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-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary brand color */
  font-weight: bold;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary brand color */
  color: #0A192F; /* Main brand color for text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-privacy-policy__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #000000;
}

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

.page-privacy-policy__section-container {
  margin-bottom: 30px;
  padding: 20px;
  border-bottom: 1px solid #eeeeee;
}

.page-privacy-policy__section-container:last-child {
  border-bottom: none;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #0A192F; /* Main brand color */
  margin-bottom: 15px;
  border-left: 5px solid #FFD700; /* Auxiliary brand color accent */
  padding-left: 15px;
}

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

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

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

.page-privacy-policy__link {
  color: #0A192F; /* Main brand color for links */
  text-decoration: underline;
  font-weight: bold;
}

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

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-privacy-policy__cta-button, .page-privacy-policy__contact-button, .page-privacy-policy__register-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary brand color */
  color: #0A192F; /* Main brand color for text */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 20px;
  margin-right: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-privacy-policy__cta-button:hover, .page-privacy-policy__contact-button:hover, .page-privacy-policy__register-button:hover {
  background-color: #e6c200;
  color: #000000;
}

/* 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-title {
    font-size: 1.5em;
  }

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

  .page-privacy-policy__cta-button, .page-privacy-policy__contact-button, .page-privacy-policy__register-button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
  }

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