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

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Minimum height for hero section */
  color: #FFFFFF;
  text-align: center;
}

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

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 40px 20px;
}

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.page-gdpr__hero-button:hover {
  background-color: #e0a53a;
}

.page-gdpr__section {
  padding: 60px 20px;
  border-bottom: 1px solid #eee;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section--dark {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #000000; /* Main color */
  text-align: center;
  margin-bottom: 40px;
}

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

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #000000; /* Main color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__sub-title--light {
  color: #FCBC45; /* Accent color for light text on dark background */
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__text--light {
  color: #f0f0f0;
}

.page-gdpr__list,
.page-gdpr__numbered-list {
  list-style-type: disc;
  max-width: 900px;
  margin: 0 auto 30px auto;
  padding-left: 25px;
}

.page-gdpr__numbered-list {
  list-style-type: decimal;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-gdpr__list-item--light {
  color: #f0f0f0;
}

.page-gdpr__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__link {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__link--light {
  color: #FCBC45;
}

.page-gdpr__link:hover {
  text-decoration: none;
}

.page-gdpr__button {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.page-gdpr__button--light {
  background-color: #FCBC45; /* Login color */
  color: #000000;
}

.page-gdpr__button:hover {
  background-color: #333333;
}

.page-gdpr__button--light:hover {
  background-color: #e0a53a;
}

.page-gdpr__dpo-contact {
  text-align: center;
  margin-top: 30px;
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #000000; /* Main color */
  color: #FFFFFF;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-gdpr__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease;
}

.page-gdpr__cta-button--register {
  background-color: #FFFFFF; /* Register color */
  color: #000000;
}

.page-gdpr__cta-button--register:hover {
  background-color: #f0f0f0;
}

.page-gdpr__cta-button--login {
  background-color: #FCBC45; /* Login color */
  color: #000000;
}

.page-gdpr__cta-button--login:hover {
  background-color: #e0a53a;
}

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

  .page-gdpr__hero-description,
  .page-gdpr__text,
  .page-gdpr__list-item {
    font-size: 1em;
  }

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

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

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

  .page-gdpr__cta-button {
    margin: 10px 0;
    width: 100%;
  }

  /* Ensure images in content area are responsive and don't overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-gdpr__hero-button {
    padding: 10px 20px;
    font-size: 1em;
  }

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

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

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

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