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

.page-gdpr__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

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

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

.page-gdpr__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0 10px;
  min-width: 200px; /* Ensure button minimum size */
  text-align: center;
}

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

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

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

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

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background */
  display: block;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF; /* Background color */
}

.page-gdpr__section {
  margin-bottom: 60px;
}

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

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

.page-gdpr__section--alt {
  background-color: #f8f8f8;
  padding: 40px;
  border-radius: 10px;
}

.page-gdpr__two-column-layout {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-gdpr__column-text {
  flex: 1;
}

.page-gdpr__column-image {
  flex: 1;
  text-align: center;
}

.page-gdpr__column-image img,
.page-gdpr__image-centered img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure image minimum size */
  min-height: 200px; /* Ensure image minimum size */
}

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

.page-gdpr__list-item {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.page-gdpr__list-item::before {
  content: '✓';
  color: #FCBC45; /* Accent color for list checkmark */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-gdpr__image-centered {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__section--contact {
  text-align: center;
  padding: 40px 0;
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  border-radius: 10px;
}

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

.page-gdpr__section--contact .page-gdpr__section-text {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

.page-gdpr__contact-link:hover {
  color: #FFFFFF;
}

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

.page-gdpr__contact-button:hover {
  background-color: #FFFFFF;
  color: #000000;
}

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

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 120px);
  }
  .page-gdpr__hero-section {
    padding: 60px 20px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-button {
    margin: 10px 0;
    width: 100%;
    max-width: 300px;
  }
  .page-gdpr__two-column-layout {
    flex-direction: column;
  }
  .page-gdpr__section--alt {
    padding: 30px 20px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  /* Ensure content area images are responsive and not too small */
  .page-gdpr__column-image img,
  .page-gdpr__image-centered img,
  .page-gdpr__hero-image img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
  }
  .page-gdpr__content-area {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-gdpr__list-item {
    font-size: 1em;
  }
}