.page-privacy-policy {
  color: #333333; /* Dark text for default 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: #007bff; /* Primary brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-privacy-policy__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-privacy-policy__button--primary {
  background-color: #ffc107; /* Auxiliary brand color */
  color: #000000;
  border: 2px solid #ffc107;
}

.page-privacy-policy__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-privacy-policy__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-privacy-policy__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.page-privacy-policy__text-block {
  margin-bottom: 40px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-privacy-policy__heading {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 25px;
  border-bottom: 3px solid #ffc107;
  padding-bottom: 10px;
}

.page-privacy-policy__sub-heading {
  font-size: 1.5em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

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

.page-privacy-policy__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-privacy-policy__image-container {
  text-align: center;
  margin: 40px 0;
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto; /* Center the image */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-privacy-policy__call-to-action {
  background-color: #f8f9fa; /* Light background for CTA */
  border: 1px solid #e2e6ea;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin: 60px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__call-to-action-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 15px;
}

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

.page-privacy-policy__button--cta {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-privacy-policy__button--cta:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-privacy-policy__conclusion-call-to-action {
  background-color: #007bff;
  color: #ffffff;
  padding: 50px 40px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-privacy-policy__conclusion-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #ffc107;
}

.page-privacy-policy__conclusion-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-privacy-policy__button--final-cta {
  background-color: #ffc107;
  color: #000000;
  border: 2px solid #ffc107;
}

.page-privacy-policy__button--final-cta:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-privacy-policy__related-links {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-privacy-policy__related-links-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 30px;
}

.page-privacy-policy__links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
}

.page-privacy-policy__related-link-item {
  display: block;
  background-color: #f0f8ff; /* Light blue background */
  color: #007bff;
  padding: 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: 1px solid #d1e7ff;
}

.page-privacy-policy__related-link-item:hover {
  background-color: #007bff;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

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

  .page-privacy-policy__hero-description,
  .page-privacy-policy__call-to-action-description,
  .page-privacy-policy__conclusion-description,
  .page-privacy-policy__text-block p,
  .page-privacy-policy__list-item {
    font-size: 1em;
  }

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

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

  .page-privacy-policy__button {
    width: 100%;
    margin-bottom: 10px;
  }

  .page-privacy-policy__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-privacy-policy__content-area,
  .page-privacy-policy__related-links {
    padding: 0 15px;
  }

  .page-privacy-policy__text-block {
    padding: 20px;
  }

  .page-privacy-policy__call-to-action,
  .page-privacy-policy__conclusion-call-to-action {
    padding: 30px 20px;
  }

  .page-privacy-policy__call-to-action-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__conclusion-title {
    font-size: 2em;
  }

  /* Enforce image responsiveness and minimum size for content images */
  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
  }
  
  /* Ensure no horizontal scrolling */
  .page-privacy-policy {
    overflow-x: hidden;
  }
}