.page-privacy-policy {
  color: #ffffff; /* Light text for dark 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 {
  background-color: #1A202C;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-privacy-policy__main-heading {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  font-weight: bold;
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1A202C; /* Match main background or slightly darker/lighter for contrast */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.page-privacy-policy__section {
  margin-bottom: 40px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for sections */
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy__sub-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

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

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

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

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

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

.page-privacy-policy__contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-privacy-policy__button--primary {
  background-color: #FFD700;
  color: #1A202C;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-privacy-policy__button--primary:hover {
  background-color: #e6c200;
  box-shadow: 0 7px 20px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

.page-privacy-policy__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }

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

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

  .page-privacy-policy__section-title {
    font-size: 1.6em;
  }

  .page-privacy-policy__sub-title {
    font-size: 1.2em;
  }

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

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

  .page-privacy-policy__contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-privacy-policy__button {
    width: 80%;
    max-width: 300px;
  }

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

  /* Ensure content images do not overflow on mobile */
  .page-privacy-policy__content-area img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-privacy-policy__section-title {
    font-size: 1.4em;
  }
}