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

.page-privacy-policy__hero-section {
  background-color: #0A1931; /* Dark blue background for hero */
  color: #ffffff; /* Light text for dark background */
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E0B700; /* Gold accent for title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-privacy-policy__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1em;
}

.page-privacy-policy__button--primary {
  background-color: #E0B700; /* Gold button */
  color: #0A1931; /* Dark blue text */
  border: 2px solid #E0B700;
}

.page-privacy-policy__button--primary:hover {
  background-color: #f0c800;
  border-color: #f0c800;
}

.page-privacy-policy__button--secondary {
  background-color: transparent;
  color: #E0B700; /* Gold text */
  border: 2px solid #E0B700;
}

.page-privacy-policy__button--secondary:hover {
  background-color: #E0B700;
  color: #0A1931;
}

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

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

.page-privacy-policy__article-heading {
  font-size: 2em;
  color: #0A1931; /* Dark blue for headings */
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid #E0B700;
  padding-bottom: 10px;
}

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

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

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

.page-privacy-policy__link {
  color: #0A1931;
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  color: #E0B700;
}

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

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

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

.page-privacy-policy__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 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__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-privacy-policy__button {
    width: 80%;
    margin: 0 auto;
  }

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

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

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

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

  /* Mobile content area images must be responsive */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size even on mobile */
    min-height: 200px;
  }
}

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

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

  .page-privacy-policy__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

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