.page-gdpr {
  color: #333333; /* Default text color for light 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-gdpr__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.7); /* Darken image for better text contrast, this is allowed as it's not changing color */
}

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  z-index: 10;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 15px;
  color: #FFFFFF; /* White text on dark background for hero */
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF; /* White text on dark background for hero */
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #FFFFFF; /* Explicit white background for sections */
}

.page-gdpr__what-is-gdpr,
.page-gdpr__your-rights,
.page-gdpr__security-measures {
  background-color: #F8F8F8; /* Light grey for alternating sections to provide visual separation */
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #000000; /* Black for titles on light background */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333; /* Dark grey for body text on light background */
}

.page-gdpr__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333; /* Dark grey for list items */
}

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

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__contact-item {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__contact-link {
  color: #000000; /* Black for contact links */
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
  color: #FCBC45; /* Login button color for hover */
}

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

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

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

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-gdpr__button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Text color for register button */
  border: 2px solid #FFFFFF;
}

.page-gdpr__button--register:hover {
  background-color: #FCBC45; /* Login button color on hover */
  color: #000000;
  border-color: #FCBC45;
}

.page-gdpr__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Text color for login button */
  border: 2px solid #FCBC45;
}

.page-gdpr__button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__text, .page-gdpr__list-item, .page-gdpr__contact-item {
    font-size: 1em;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-description {
    font-size: 1.1em;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__button {
    width: 100%;
    max-width: 300px; /* Constrain button width on mobile */
  }
  /* Mobile content area image resizing */
  .page-gdpr__container img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__image-full-width {
    width: 100%; /* Ensure content images don't overflow */
  }
  /* Ensure no horizontal scroll for main content */
  .page-gdpr {
    overflow-x: hidden;
  }
  .page-gdpr__hero-content {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__cta-title {
    font-size: 1.6em;
  }
}