.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: #f0f8ff; /* Light background for hero */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.2; /* Subtle background image */
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: #000000; /* Darker text over subtle image */
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  color: #007bff; /* Main brand color */
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #28a745; /* Auxiliary brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4);
}

.page-privacy-policy__hero-button:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

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

.page-privacy-policy__article {
  margin-bottom: 40px;
}

.page-privacy-policy__article-heading {
  color: #007bff; /* Main brand color */
  font-size: 2em;
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.page-privacy-policy__sub-heading {
  color: #0056b3; /* Darker shade of main brand color */
  font-size: 1.5em;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-privacy-policy__article-paragraph {
  margin-bottom: 15px;
  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__text-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__text-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

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

.page-privacy-policy__contact-info {
  margin-top: 30px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
}

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

.page-privacy-policy__cta-container {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-privacy-policy__cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.page-privacy-policy__cta-button--secondary {
  background-color: #6c757d;
  box-shadow: 0 6px 15px rgba(108, 117, 125, 0.4);
}

.page-privacy-policy__cta-button--secondary:hover {
  background-color: #5a6268;
}

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

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

  .page-privacy-policy__hero-button,
  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

@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__article-heading {
    font-size: 1.4em;
  }

  .page-privacy-policy__sub-heading {
    font-size: 1.2em;
  }

  .page-privacy-policy__hero-button,
  .page-privacy-policy__cta-button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}