.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__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF; /* Light text for dark background */
  padding: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6; /* Slightly dim image to make text stand out */
}

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  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: #FFFFFF;
}

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

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

.page-gdpr__btn--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for light button */
}

.page-gdpr__btn--primary:hover {
  background-color: #e0a73b;
}

.page-gdpr__btn--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register color */
  border: 2px solid #FCBC45;
}

.page-gdpr__btn--secondary:hover {
  background-color: #222222;
  border-color: #e0a73b;
}

.page-gdpr__btn--link {
  color: #FCBC45;
  text-decoration: underline;
  font-weight: bold;
  padding: 0;
  background: none;
  border: none;
}

.page-gdpr__btn--link:hover {
  color: #e0a73b;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Light background for content sections */
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

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

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

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

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 200px; /* Ensure images are not too small */
}

.page-gdpr__section-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
}

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

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

.page-gdpr__contact-card {
  background-color: #000000; /* Dark background for contact card */
  color: #FFFFFF; /* Light text */
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-gdpr__contact-card .page-gdpr__section-title {
  color: #FFFFFF;
  margin-bottom: 25px;
}

.page-gdpr__contact-card .page-gdpr__paragraph {
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__content-flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-gdpr__content-flex--reverse {
    flex-direction: column;
  }
}

@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__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.95em;
  }
  .page-gdpr__section-image {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__contact-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__btn {
    width: 90%;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
}