.page-privacy-policy {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  padding-top: var(--header-offset, 120px);
}

.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px; /* Adjusted padding, header offset handled by main */
  text-align: center;
  background-color: #1A202C; /* Main brand color for hero background */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for main title */
  line-height: 1.2;
}

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

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

.page-privacy-policy__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-privacy-policy__button--primary {
  background-color: #FFD700; /* Gold accent */
  color: #1A202C; /* Dark text on gold */
  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; /* Gold text */
  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: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.7;
}

.page-privacy-policy__article {
  background-color: #1A202C; /* Dark slate background for article */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__heading {
  font-size: 2.2em;
  color: #FFD700; /* Gold accent for headings */
  margin-top: 45px;
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-privacy-policy__sub-heading {
  font-size: 1.6em;
  color: #FFD700; /* Gold accent for sub-headings */
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1.05em;
}

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

.page-privacy-policy__contact-list {
  list-style-type: none;
  padding-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__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

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

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

  .page-privacy-policy__hero-description,
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item,
  .page-privacy-policy__contact-item {
    font-size: 1em;
  }

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

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

  .page-privacy-policy__hero-actions,
  .page-privacy-policy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-privacy-policy__button {
    width: 100%;
    padding: 12px 20px;
  }

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

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

  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
  }
  
  /* Ensure all images within .page-privacy-policy are responsive and not smaller than 200px */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Strict enforcement for all content images */
    min-height: 200px; /* Strict enforcement for all content images */
  }
}

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

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

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

  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }
}