.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 {
  position: relative;
  overflow: hidden;
  background-color: #1A202C;
  padding: 0;
  text-align: center;
}

.page-privacy-policy__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-privacy-policy__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  z-index: 2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-privacy-policy__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: rgba(26, 32, 44, 0.9); /* Slightly transparent dark background for content */
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

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

.page-privacy-policy__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-privacy-policy__sub-section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #f0f0f0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 15px;
  color: #cccccc;
}

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

.page-privacy-policy__list-item {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 8px;
}

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

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  max-width: 800px; /* Ensure images in content area are not too wide */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
  object-fit: cover;
}

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

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

.page-privacy-policy__action-area {
  background-color: #1A202C;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__action-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: #FFD700;
  margin-bottom: 15px;
}

.page-privacy-policy__action-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cccccc;
  margin-bottom: 30px;
}

.page-privacy-policy__register-button,
.page-privacy-policy__login-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  margin: 0 10px 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-content {
    width: 95%;
    padding: 20px;
  }

  .page-privacy-policy__hero-title {
    font-size: 2.5rem;
  }

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

  .page-privacy-policy__section-title {
    font-size: 2rem;
  }

  .page-privacy-policy__sub-section-title {
    font-size: 1.5rem;
  }

  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 0.9rem;
  }

  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images in content area are not too small */
    min-height: 200px; /* Ensure images in content area are not too small */
  }

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

  .page-privacy-policy__register-button,
  .page-privacy-policy__login-button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  /* Ensure no horizontal scroll for content area */
  .page-privacy-policy {
    overflow-x: hidden;
  }

  .page-privacy-policy__content-area img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}