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

.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-privacy-policy__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background-color: rgba(0, 51, 102, 0.75); /* Semi-transparent main color for readability */
  padding: 30px;
  border-radius: 10px;
}

.page-privacy-policy__main-heading {
  font-size: 3em;
  color: #FFD700; /* Gold accent for heading */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-privacy-policy__intro-paragraph {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-privacy-policy__content-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-heading {
  font-size: 2em;
  color: #003366; /* Main blue for section headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

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

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  color: #555555;
}

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

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

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

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

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

.page-privacy-policy__inline-link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__inline-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

.page-privacy-policy__contact-item {
  margin-bottom: 10px;
  color: #555555;
}

.page-privacy-policy__call-to-action {
  text-align: center;
  background-color: #003366; /* Dark blue background */
  color: #ffffff;
  padding: 60px 20px;
  margin-top: 40px;
}

.page-privacy-policy__cta-heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold heading */
  margin-bottom: 20px;
}

.page-privacy-policy__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px 40px;
    min-height: 350px;
  }

  .page-privacy-policy__hero-container {
    padding: 20px;
  }

  .page-privacy-policy__main-heading {
    font-size: 2.2em;
  }

  .page-privacy-policy__intro-paragraph {
    font-size: 1em;
  }

  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-privacy-policy__content-section {
    margin: 20px auto;
    padding: 15px;
  }

  .page-privacy-policy__section-heading {
    font-size: 1.7em;
    margin-top: 30px;
  }

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

  .page-privacy-policy__list {
    margin-left: 20px;
  }

  .page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }

  .page-privacy-policy__call-to-action {
    padding: 40px 15px;
  }

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

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

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

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