.page-privacy-policy {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 80px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #FF4500, #1E90FF);
}

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

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

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

.page-privacy-policy__section-wrapper {
  padding: 20px;
}

.page-privacy-policy__section-heading {
  color: #FF4500; /* Main brand color for headings */
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid #1E90FF; /* Auxiliary color for emphasis */
  padding-bottom: 10px;
}

.page-privacy-policy__sub-heading {
  color: #1E90FF; /* Auxiliary brand color for sub-headings */
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 10px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
}

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

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

.page-privacy-policy__link {
  color: #1E90FF; /* Link color using auxiliary brand color */
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  text-decoration: underline;
  color: #FF4500; /* Hover color using main brand color */
}

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure no extra space below image */
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

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

.page-privacy-policy__cta-section {
  background: linear-gradient(90deg, #FF4500, #FFD700); /* Gradient background with main and gold */
  color: #ffffff;
  padding: 50px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-privacy-policy__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
  position: relative;
  z-index: 2;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #1E90FF; /* Auxiliary color for CTA button */
  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.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button:hover {
  background-color: #007bff;
  transform: translateY(-2px);
}

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

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

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

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

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

  /* Mobile content area images must be responsive */
  .page-privacy-policy__content-image,
  .page-privacy-policy__cta-image {
    max-width: 100%;
    height: auto;
  }

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

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

  .page-privacy-policy__cta-section {
    padding: 30px 20px;
  }
}

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

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

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

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

  .page-privacy-policy__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}