.page-gdpr {
  color: #333333; /* Dark text 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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-gdpr__container--flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-gdpr__container--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF; /* White text for dark background */
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 400px; /* Minimum height for hero image */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

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

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

.page-gdpr__hero-button--register {
  background-color: #FCBC45; /* Login color for register for consistency */
  color: #000000;
}

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

.page-gdpr__introduction-section,
.page-gdpr__rights-section,
.page-gdpr__data-handling-section,
.page-gdpr__contact-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__section-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
  text-align: left;
}

.page-gdpr__rights-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__rights-item {
  margin-bottom: 10px;
}

.page-gdpr__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__content-block {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__image-block {
  flex: 1;
  text-align: center;
}

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

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.page-gdpr__button--primary {
  background-color: #000000;
  color: #FFFFFF;
}

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

.page-gdpr__button--secondary {
  background-color: #FCBC45;
  color: #000000;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-content {
    padding: 80px 15px;
  }

  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

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

  .page-gdpr__container--flex {
    flex-direction: column;
  }

  .page-gdpr__container--reverse {
    flex-direction: column;
  }

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

  .page-gdpr__section-paragraph {
    font-size: 0.95em;
  }

  .page-gdpr__rights-list {
    font-size: 0.95em;
  }
  
  .page-gdpr__image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
  }
}