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

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  background-color: #0A2342;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Minimum height for hero section */
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Slightly dim the image to make text readable */
}

.page-privacy-policy__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 3;
}

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

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

.page-privacy-policy__hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1em;
  text-align: center;
}

.page-privacy-policy__button--primary {
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-privacy-policy__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-privacy-policy__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-privacy-policy__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

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

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #0A2342;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 15px;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

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

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

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

.page-privacy-policy__link {
  color: #0A2342;
  text-decoration: underline;
  font-weight: bold;
}

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

.page-privacy-policy__cta-section {
  background-color: #0A2342;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  margin-top: 40px;
  background-image: url('[GALLERY:cta_privacy:1920x400:data_protection,support,privacy,jili80,luxury,glitter]');
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-privacy-policy__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 35, 66, 0.8);
  z-index: 1;
}

.page-privacy-policy__cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-privacy-policy__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

  .page-privacy-policy__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-privacy-policy__button {
    width: 80%;
    margin: 0 auto;
  }

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

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

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

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

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

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

  .page-privacy-policy__button {
    padding: 10px 20px;
  }

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

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

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