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

.page-privacy-policy__hero-section {
  background-color: #1A202C; /* Main brand color for hero background */
  padding: 60px 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__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.3; /* Subtle background effect */
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 0;
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold accent for main title */
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px auto;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section {
  margin-bottom: 30px;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.page-privacy-policy__section:last-of-type {
  border-bottom: none;
}

.page-privacy-policy__heading {
  font-size: 2em;
  color: #1A202C; /* Main dark color for headings */
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

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

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

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

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure minimum display size */
  min-height: 200px; /* Ensure minimum display size */
}

.page-privacy-policy__link {
  color: #007bff;
  text-decoration: none;
}

.page-privacy-policy__link:hover {
  text-decoration: underline;
}

.page-privacy-policy__section--cta {
  text-align: center;
  padding-top: 40px;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-top: 40px;
  border: 1px solid #eee;
}

.page-privacy-policy__section--cta .page-privacy-policy__heading {
  color: #1A202C;
  border-left: none;
  padding-left: 0;
  text-align: center;
}

.page-privacy-policy__button-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.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, transform 0.3s ease;
  font-size: 1.1em;
  min-width: 180px;
  text-align: center;
}

.page-privacy-policy__button--primary {
  background-color: #FFD700; /* Gold accent color */
  color: #1A202C;
  border: 2px solid #FFD700;
}

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

.page-privacy-policy__button--secondary {
  background-color: #1A202C; /* Main dark color */
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-privacy-policy__button--secondary:hover {
  background-color: #0d1016;
  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__heading {
    font-size: 1.5em;
  }

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

  .page-privacy-policy__list {
    margin-left: 15px;
  }

  .page-privacy-policy__button-group {
    flex-direction: column;
    gap: 15px;
  }

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

  /* Ensure content images are responsive and do not overflow */
  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
  }
}