.page-privacy-policy {
  color: #333333; /* Dark text for light body background #f8f8f8 */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  background-color: #1A2A4E; /* Fallback background color */
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim the image to make text more readable */
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff; /* White text for hero content */
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-privacy-policy__main-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-privacy-policy__button:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.7;
}

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

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

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #1A2A4E; /* Dark blue for section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.6em;
  color: #1A2A4E; /* Dark blue for sub-section titles */
  margin-top: 35px;
  margin-bottom: 15px;
}

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

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

.page-privacy-policy__contact-link {
  color: #1A2A4E; /* Dark blue for contact links */
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy__contact-link:hover {
  color: #FFD700; /* Gold on hover */
}

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

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

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

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

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

  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__sub-section-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .page-privacy-policy__article img {
    max-width: 100%;
    height: auto;
  }

  .page-privacy-policy__article p,
  .page-privacy-policy__list li {
    font-size: 0.95em;
  }
}