.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 not hidden by fixed header */
}

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

.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-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  background: rgba(75, 0, 130, 0.7); /* Royal Purple with transparency */
  padding: 30px;
  border-radius: 10px;
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #4B0082; /* Royal Purple text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-privacy-policy__hero-button:hover {
  background-color: #e6c200;
  color: #3a0066;
}

.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 {
  margin-bottom: 40px;
}

.page-privacy-policy__article-heading {
  font-size: 2em;
  color: #4B0082; /* Royal Purple heading */
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

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

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

.page-privacy-policy__article-list-item {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-privacy-policy__article-list-item strong {
  color: #4B0082;
}

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

.page-privacy-policy__inline-link {
  color: #FFD700; /* Gold link */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__inline-link:hover {
  color: #4B0082;
}

.page-privacy-policy__contact-info {
  margin-top: 10px;
  font-size: 1.1em;
}

.page-privacy-policy__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #4B0082; /* Royal Purple background */
  border-radius: 8px;
  color: #ffffff;
}

.page-privacy-policy__cta-text {
  font-size: 1.8em;
  margin-bottom: 25px;
  font-weight: bold;
  color: #FFD700; /* Gold text */
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #4B0082; /* Royal Purple text */
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

  .page-privacy-policy__article-paragraph,
  .page-privacy-policy__article-list-item {
    font-size: 0.95em;
  }

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

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

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

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

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

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

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

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

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

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