.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: #1A237E; /* Main brand color for hero background */
  color: #ffffff; /* White text on dark background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.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: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 1;
}

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

.page-privacy-policy__container {
  max-width: 960px;
  margin: 0 auto;
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  color: #1A237E; /* Main brand color for section titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-privacy-policy__subsection-title {
  font-size: 1.8em;
  color: #1A237E; /* Main brand color for subsection titles */
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-privacy-policy__text {
  font-size: 1.1em;
  margin-bottom: 15px;
}

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

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

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-privacy-policy__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-privacy-policy__contact-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #1A237E; /* Main brand color for contact items */
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for CTA button */
  color: #1A237E; /* Dark text on accent background */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e5c100; /* Slightly darker accent on hover */
  transform: translateY(-3px);
}

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

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }
  .page-privacy-policy__hero-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__hero-description,
  .page-privacy-policy__text,
  .page-privacy-policy__list-item,
  .page-privacy-policy__contact-item {
    font-size: 1em;
  }
  .page-privacy-policy__section {
    padding: 40px 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__image {
    max-width: 100%; /* Prevent overflow on mobile */
    height: auto;
  }
  .page-privacy-policy__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__hero-description {
    font-size: 0.95em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.3em;
  }
}