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

.page-privacy-policy__hero-section {
  background-color: #0A246A; /* Primary brand color */
  color: #FFFFFF;
  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.2; /* Subtle overlay */
  z-index: 0;
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #F3C500; /* Accent color for title */
  position: relative;
  z-index: 1;
  font-weight: bold;
}

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

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #F3C500; /* Accent color for button */
  color: #0A246A; /* Dark text for accent button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

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

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

.page-privacy-policy__container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #0A246A; /* Primary brand color for headings */
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #F3C500; /* Accent underline */
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  font-size: 1em;
}

.page-privacy-policy__paragraph a {
  color: #0A246A; /* Link color matching primary brand color */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__paragraph a:hover {
  color: #F3C500; /* Accent color on hover */
}

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

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

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

.page-privacy-policy__contact-info {
  font-style: normal;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-privacy-policy__contact-info p {
  margin-bottom: 5px;
}

.page-privacy-policy__contact-info a {
  color: #0A246A;
  text-decoration: none;
}

.page-privacy-policy__contact-info a:hover {
  color: #F3C500;
}

.page-privacy-policy__cta-section {
  text-align: center;
  background-color: #0A246A;
  color: #FFFFFF;
  padding: 40px 20px;
  border-radius: 10px;
  margin-top: 40px;
}

.page-privacy-policy__cta-text {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #F3C500;
  font-weight: bold;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #F3C500;
  color: #0A246A;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

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

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

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

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

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

  .page-privacy-policy__cta-text {
    font-size: 1.2em;
  }

  /* Ensure all content images are responsive and do not overflow */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }
}