.page-gdpr {
  background-color: #FFFFFF; /* Page background set to white as per color scheme */
  color: #333333; /* Dark text for contrast on light background */
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text readability */
  border-radius: 10px;
  color: #FFFFFF; /* Light text on dark overlay */
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-gdpr__button--register {
  background-color: #FFFFFF; /* Register button color as per config */
  color: #000000; /* Dark text on white button */
}

.page-gdpr__button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-gdpr__button--login {
  background-color: #FCBC45; /* Login button color as per config */
  color: #000000; /* Dark text on yellow button */
}

.page-gdpr__button--login:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-gdpr__content-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: justify;
}

.page-gdpr__principles-list, .page-gdpr__rights-list, .page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-gdpr__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-gdpr__list-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-gdpr__list-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-gdpr__image-inline {
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-gdpr__button--contact, .page-gdpr__button--join, .page-gdpr__button--explore {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 20px;
}

.page-gdpr__button--contact:hover, .page-gdpr__button--join:hover, .page-gdpr__button--explore:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
}

.page-gdpr__cta-section .page-gdpr__section-title {
  color: #FFFFFF;
}

.page-gdpr__cta-section .page-gdpr__section-title::after {
  background-color: #FFFFFF;
}

.page-gdpr__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-gdpr__cta-section .page-gdpr__text-block {
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

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

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

  .page-gdpr__button {
    width: 100%;
    padding: 15px 20px;
  }

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

  .page-gdpr__text-block {
    font-size: 1em;
  }

  .page-gdpr__list-title {
    font-size: 1.2em;
  }

  /* Ensure all content area images are responsive and do not overflow */
  .page-gdpr__hero-image,
  .page-gdpr__image-inline {
    max-width: 100%;
    height: auto;
    /* The width attributes in HTML are for layout slot, CSS can override for responsiveness */
  }

  .page-gdpr__hero-section {
    min-height: 400px;
  }

  .page-gdpr__hero-content {
    padding: 20px 15px;
  }

  .page-gdpr__content-container {
    margin: 20px auto;
    padding: 0 15px;
  }

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

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

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

  .page-gdpr__hero-section {
    min-height: 350px;
  }
}