.page-privacy-policy {
  color: #333333; /* Default dark text for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-privacy-policy__hero-section {
  background-color: #0A2463; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px 40px;
  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-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 1200px; /* Ensure image doesn't overflow */
}

.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.1);
}

.page-privacy-policy__article {
  padding: 20px 0;
}

.page-privacy-policy__article-heading {
  font-size: 2.2em;
  color: #0A2463;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-privacy-policy__article-subheading {
  font-size: 1.6em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__article-paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  color: #333333;
}

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

.page-privacy-policy__article-list-item {
  margin-bottom: 10px;
  color: #333333;
}

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

.page-privacy-policy__contact-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-privacy-policy__contact-button {
  display: inline-block;
  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;
  min-width: 200px;
}

.page-privacy-policy__contact-button--primary {
  background-color: #FFD700;
  color: #0A2463;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-privacy-policy__contact-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-privacy-policy__contact-button--secondary {
  background-color: #0A2463;
  color: #ffffff;
  border: 2px solid #FFD700;
  box-shadow: 0 6px 20px rgba(10, 36, 99, 0.4);
}

.page-privacy-policy__contact-button--secondary:hover {
  background-color: #1a3a7a;
  transform: translateY(-3px);
}

/* Responsive Design */
@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.8em;
  }

  .page-privacy-policy__article-subheading {
    font-size: 1.4em;
  }

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

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

  .page-privacy-policy__contact-button {
    width: 100%;
    max-width: 300px;
  }

  /* Mobile content area images must be constrained */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-privacy-policy__article-subheading {
    font-size: 1.2em;
  }

  .page-privacy-policy__article-list {
    margin-left: 10px;
  }
}