.page-privacy-policy {
  color: #ffffff; /* Light text for dark body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  padding: 60px 20px;
  background-color: rgba(30, 144, 255, 0.2); /* Semi-transparent secondary color */
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-privacy-policy__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image slightly for text readability */
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background for text */
  border-radius: 10px;
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Primary color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-privacy-policy__action-button, .page-privacy-policy__contact-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color for buttons */
  color: #121212; /* Dark text for primary button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__action-button:hover, .page-privacy-policy__contact-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-privacy-policy__section {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for sections */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #1E90FF; /* Secondary color for section titles */
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 15px;
}

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

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

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

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

.page-privacy-policy__paragraph a, .page-privacy-policy__list-item a {
  color: #1E90FF; /* Secondary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__paragraph a:hover, .page-privacy-policy__list-item a:hover {
  color: #62b1ff;
  text-decoration: underline;
}

.page-privacy-policy__image-container {
  margin: 30px 0;
  text-align: center;
}

.page-privacy-policy__image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__main-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__intro-description,
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 1em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.6em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.4em;
  }
  .page-privacy-policy__action-button, .page-privacy-policy__contact-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-privacy-policy__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-privacy-policy__content-area {
    padding: 0 15px;
  }
  .page-privacy-policy__section {
    padding: 20px;
  }
  .page-privacy-policy__image-container img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.4em;
  }
  .page-privacy-policy__action-button, .page-privacy-policy__contact-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-privacy-policy__list {
    margin-left: 20px;
  }
}