.page-gdpr {
  color: #333333; /* Default text color for light backgrounds */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

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

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

.page-gdpr__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;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
}

.page-gdpr__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-gdpr__button--register:hover {
  background-color: #e0e0e0;
  color: #000000;
}

.page-gdpr__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-height: 200px; /* Enforce minimum image size */
}

.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: #FFFFFF; /* Default background for content sections */
  color: #333333;
}

.page-gdpr__section-spacing {
  margin-bottom: 0;
}

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

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

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

.page-gdpr__sub-section-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #000000;
}

.page-gdpr__section--dark .page-gdpr__sub-section-title {
  color: #FCBC45;
}

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

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

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

.page-gdpr__list {
  list-style: disc inside;
  margin-bottom: 30px;
  padding-left: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-gdpr__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-height: 200px; /* Enforce minimum image size */
}

.page-gdpr__image--centered {
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__link--light {
  color: #FCBC45; /* Link color for dark sections */
}

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

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
}

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

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

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

  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

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

  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.95em;
  }

  .page-gdpr__hero-image, .page-gdpr__image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not overflow */
    min-height: 200px; /* Maintain minimum size */
  }

  .page-gdpr__hero-section, .page-gdpr__content-section {
    padding: 40px 15px;
  }
}