.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 space for fixed header */
}

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

.page-privacy-policy__hero-container {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.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;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-privacy-policy__hero-button,
.page-privacy-policy__content-button,
.page-privacy-policy__contact-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary brand color for buttons */
  color: #000000; /* Ensure high contrast text on gold button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-privacy-policy__hero-button:hover,
.page-privacy-policy__content-button:hover,
.page-privacy-policy__contact-button:hover {
  background-color: #e0a800;
}

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

.page-privacy-policy__article {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #007bff; /* Primary brand color for headings */
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffc107; /* Gold accent under titles */
  padding-bottom: 10px;
}

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

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

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

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

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 25px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__image-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.page-privacy-policy__article a {
  color: #007bff;
  text-decoration: underline;
}

.page-privacy-policy__article a:hover {
  color: #0056b3;
}

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

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

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

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

  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }
}

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

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

  .page-privacy-policy__hero-button,
  .page-privacy-policy__content-button,
  .page-privacy-policy__contact-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

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