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

.page-privacy-policy__hero-section {
  background-color: #f0f0f0; /* Light background for the hero section */
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

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

.page-privacy-policy__main-title {
  font-size: 2.8em;
  color: #000000; /* Primary color for main title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-privacy-policy__intro-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
}

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

.page-privacy-policy__button {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  display: inline-block;
}

.page-privacy-policy__button--register {
  background-color: #000000; /* Primary color */
  color: #FFFFFF; /* Register text color */
  border: 2px solid #000000;
}

.page-privacy-policy__button--register:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-privacy-policy__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for login button */
  border: 2px solid #FCBC45;
}

.page-privacy-policy__button--login:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-privacy-policy__hero-image {
  max-width: 100%;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-privacy-policy__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF; /* Background color for content area */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: -50px; /* Overlap with hero section slightly */
  position: relative;
  z-index: 1;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #000000; /* Primary color for section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45; /* Accent border */
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  color: #333333;
}

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

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

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

.page-privacy-policy__link {
  color: #FCBC45; /* Accent color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-privacy-policy__image-container {
  margin: 30px 0;
  text-align: center;
}

.page-privacy-policy__image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-privacy-policy__cta-section {
  background-color: #000000; /* Primary background for CTA */
  color: #FFFFFF;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 50px;
}

.page-privacy-policy__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-privacy-policy__button--register-bottom {
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000;
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FCBC45;
}

.page-privacy-policy__button--register-bottom:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 40px 15px;
  }

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

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

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

  .page-privacy-policy__button {
    width: 100%;
    max-width: 300px; /* Constrain button width on mobile */
  }

  .page-privacy-policy__content-area {
    padding: 25px 15px;
    margin-top: -30px;
  }

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

  .page-privacy-policy__cta-text {
    font-size: 1.2em;
  }

  .page-privacy-policy__button--register-bottom {
    font-size: 1.1em;
    padding: 12px 25px;
  }

  .page-privacy-policy__hero-image img,
  .page-privacy-policy__image-container img {
    max-width: 100%;
    height: auto;
  }
  
  .page-privacy-policy__hero-image img,
  .page-privacy-policy__image-container img {
    max-width: 100%;
    height: auto;
  }
  
  /* Ensure all content images in mobile are responsive and not too small */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small on mobile */
    min-height: 200px; /* Ensure images are not too small on mobile */
  }
}