.page-privacy-policy {
  color: #f0f0f0; /* Light text for dark background */
  background-color: #0A0A0A; /* Main dark background */
}

.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
  color: #f0f0f0;
  text-align: center;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Slightly darken image for text readability, not changing color */
  z-index: 1;
}

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

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.page-privacy-policy__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-privacy-policy__hero-button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A0A0A;
}

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

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

.page-privacy-policy__hero-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: 60px 20px;
  background-color: #0A0A0A;
}

.page-privacy-policy__section {
  margin-bottom: 50px;
  padding: 30px;
  background-color: #1a1a1a; /* Slightly lighter dark background for sections */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy__subsection-title {
  font-size: 1.8em;
  color: #f0f0f0;
  margin-top: 35px;
  margin-bottom: 20px;
}

.page-privacy-policy__section-paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

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

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

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

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

.page-privacy-policy__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

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

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

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

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

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

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

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

  .page-privacy-policy__hero-description {
    font-size: 1em;
  }

  .page-privacy-policy__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

  .page-privacy-policy__section-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }

  .page-privacy-policy__subsection-title {
    font-size: 1.3em;
  }

  .page-privacy-policy__section-paragraph,
  .page-privacy-policy__list-item,
  .page-privacy-policy__contact-item {
    font-size: 0.95em;
  }

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

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

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

  .page-privacy-policy__hero-description {
    font-size: 0.9em;
  }

  .page-privacy-policy__hero-button {
    width: 100%;
    padding: 10px 20px;
  }

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

  .page-privacy-policy__subsection-title {
    font-size: 1.1em;
  }

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