.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-privacy-policy__hero-section {
  background-color: #1A1A1A; /* Dark background */
  color: #ffffff; /* Light text for dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-privacy-policy__hero-content {
  max-width: 800px;
}

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

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-privacy-policy__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1em;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-privacy-policy__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text on gold */
}

.page-privacy-policy__button--primary:hover {
  background-color: #e6c200;
}

.page-privacy-policy__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text with dark background */
  border: 2px solid #FFD700;
}

.page-privacy-policy__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-privacy-policy__image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 800px;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* White background for content */
  color: #333333;
}

.page-privacy-policy__article {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #1A1A1A; /* Dark text for titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
}

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

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

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

.page-privacy-policy__contact-buttons {
  text-align: center;
  margin-top: 40px;
}

.page-privacy-policy__cta-section {
  background-color: #1A1A1A; /* Dark background */
  color: #ffffff; /* Light text */
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent */
  margin-bottom: 20px;
}

.page-privacy-policy__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-section .page-privacy-policy__button {
  min-width: 250px;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }

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

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

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

  .page-privacy-policy__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 12px 20px;
  }

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

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

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

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