.page-privacy-policy {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(255, 215, 0, 0.2) 100%);
}

.page-privacy-policy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image slightly for text readability, not changing color */
}

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

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-privacy-policy__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-privacy-policy__button--primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

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

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

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

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Slightly transparent dark background for content */
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__section-intro {
  margin-bottom: 40px;
  text-align: center;
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-privacy-policy__section-paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 15px;
  text-align: justify;
}

.page-privacy-policy__section {
  margin-bottom: 50px;
  padding: 25px;
  background-color: rgba(139, 0, 0, 0.2); /* Subtle dark red background for sections */
  border-radius: 8px;
  border-left: 5px solid #FFD700;
}

.page-privacy-policy__sub-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.5);
  padding-bottom: 10px;
}

.page-privacy-policy__sub-sub-title {
  font-size: 1.5em;
  color: #f0f0f0;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

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

.page-privacy-policy__section-paragraph a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__section-paragraph a:hover {
  color: #e6c200;
}

.page-privacy-policy__image {
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
}

.page-privacy-policy__image--center {
  text-align: center;
}

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

.page-privacy-policy__contact-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-privacy-policy__contact-item a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-item a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-privacy-policy__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  margin-top: 60px;
  border: 1px solid #FFD700;
}

.page-privacy-policy__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__cta-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-privacy-policy__button--cta {
  padding: 15px 35px;
  font-size: 1.3em;
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #8B0000;
}

.page-privacy-policy__button--cta:hover {
  background-color: #a00000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-privacy-policy__hero-title {
    font-size: 2.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%;
    max-width: 300px;
  }
  .page-privacy-policy__content-area {
    padding: 30px 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__sub-sub-title {
    font-size: 1.2em;
  }
  .page-privacy-policy__section-paragraph {
    font-size: 0.95em;
  }
  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small even on mobile */
    min-height: 200px;
  }
  .page-privacy-policy__cta-title {
    font-size: 2em;
  }
  .page-privacy-policy__cta-description {
    font-size: 1.1em;
  }
  .page-privacy-policy__button--cta {
    font-size: 1.1em;
    padding: 12px 25px;
    width: 90%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.6em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.3em;
  }
  .page-privacy-policy__cta-title {
    font-size: 1.6em;
  }
  .page-privacy-policy__button {
    width: 95%;
  }
  .page-privacy-policy__button--cta {
    width: 95%;
  }
}

/* Ensure all images within the content area are responsive and don't overflow */
.page-privacy-policy img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Content area images must not be smaller than 200px */
.page-privacy-policy__content-area img {
  min-width: 200px;
  min-height: 200px;
}

/* Mobile specific image sizing for content area to prevent overflow */
@media (max-width: 768px) {
  .page-privacy-policy__content-area img {
    max-width: 100%;
    height: auto;
  }
}