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

.page-privacy-policy__hero-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #0D0D1A 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  color: #E94560;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(233, 69, 96, 0.4);
}

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

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0D0D1A; /* Dark background for content sections */
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__section {
  margin-bottom: 40px;
  background-color: rgba(26, 26, 46, 0.5); /* Slightly lighter dark background for sections */
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid #E94560;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #E94560;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(233, 69, 96, 0.3);
  padding-bottom: 10px;
}

.page-privacy-policy__subsection-title {
  font-size: 1.6em;
  color: #f0f0f0;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-privacy-policy__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-privacy-policy__list-item {
  background-color: rgba(233, 69, 96, 0.1);
  border-left: 3px solid #E94560;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #f0f0f0;
}

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

.page-privacy-policy__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-privacy-policy__action-button {
  display: inline-block;
  background-color: #E94560;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-privacy-policy__action-button:hover {
  background-color: #ff6b83;
  transform: translateY(-3px);
}

.page-privacy-policy__action-button--bottom {
  margin-top: 40px;
  display: block;
  text-align: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__related-links {
  padding: 60px 20px;
  text-align: center;
  background-color: #1A1A2E;
}

.page-privacy-policy__related-links-title {
  font-size: 2.5em;
  color: #E94560;
  margin-bottom: 40px;
}

.page-privacy-policy__links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-privacy-policy__link-card {
  background-color: rgba(233, 69, 96, 0.1);
  border: 1px solid rgba(233, 69, 96, 0.3);
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-privacy-policy__link-card:hover {
  transform: translateY(-5px);
  background-color: rgba(233, 69, 96, 0.2);
}

.page-privacy-policy__link-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-privacy-policy__link-card-title {
  font-size: 1.5em;
  color: #E94560;
  margin-bottom: 10px;
}

.page-privacy-policy__link-card-description {
  font-size: 1em;
  color: #cccccc;
}

.page-privacy-policy a {
  color: #E94560;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
  color: #ff6b83;
  text-decoration: underline;
}

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

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

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

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

  .page-privacy-policy__text,
  .page-privacy-policy__list-item,
  .page-privacy-policy__action-button {
    font-size: 1em;
  }

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

  .page-privacy-policy__links-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile content area images must be responsive and not cause overflow */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

  .page-privacy-policy__action-button {
    padding: 12px 25px;
  }
}