.page-privacy-policy {
  color: #333333; /* Deep dark text for light body background */
}

.page-privacy-policy__hero-section {
  background-color: #0A2463; /* Main brand color */
  color: #ffffff; /* White text for dark background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #E3B505; /* Accent color for title */
}

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

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #E3B505; /* Accent color for button */
  color: #0A2463; /* Dark text for accent button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-privacy-policy__hero-button:hover {
  background-color: #f5db9c; /* Lighter shade on hover */
  transform: translateY(-3px);
}

.page-privacy-policy__hero-image {
  margin-top: 40px;
  position: relative;
  z-index: 0;
  max-width: 1000px; /* Constrain image width */
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.7;
}

.page-privacy-policy__article-heading {
  font-size: 2em;
  color: #0A2463; /* Main brand color for headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #E3B505; /* Accent color underline */
  padding-bottom: 10px;
}

.page-privacy-policy__article-paragraph {
  margin-bottom: 15px;
  font-size: 1.05em;
}

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

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

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

.page-privacy-policy__link {
  color: #0A2463; /* Main brand color for links */
  text-decoration: underline;
  font-weight: 600;
}

.page-privacy-policy__link:hover {
  color: #E3B505; /* Accent color on hover */
}

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

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

.page-privacy-policy__cta-banner {
  background-color: #f0f0f0;
  border: 1px solid #e0e0e0;
  padding: 40px;
  margin-top: 60px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__cta-title {
  font-size: 2.2em;
  color: #0A2463;
  margin-bottom: 15px;
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* 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__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-privacy-policy__article-heading {
    font-size: 1.6em;
  }

  .page-privacy-policy__article-paragraph,
  .page-privacy-policy__list-item {
    font-size: 0.95em;
  }

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

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

  .page-privacy-policy__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-area {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile content area images must not overflow */
  .page-privacy-policy img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }

  .page-privacy-policy {
    overflow-x: hidden;
  }
}