.page-gdpr {
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Dark background for hero to make text pop */
  color: #FFFFFF;
}

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for content within hero */
}

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

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
  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: #F0F0F0;
}

.page-gdpr__hero-buttons {
  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;
  border: 2px solid transparent;
}

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

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

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

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

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

.page-gdpr__button--join:hover {
  background-color: #000000;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-gdpr__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.page-gdpr__section-description {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.page-gdpr__section-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 800px; /* Ensure images are not too wide */
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__commitment-item,
.page-gdpr__rights-item,
.page-gdpr__policy-item {
  background-color: #F8F8F8;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #FCBC45;
  border-radius: 5px;
  font-size: 1em;
}

.page-gdpr__commitment-item strong,
.page-gdpr__rights-item strong {
  color: #000000;
}

.page-gdpr__policy-item a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__policy-item a:hover {
  text-decoration: underline;
  color: #FCBC45;
}

.page-gdpr__cta-buttons {
  text-align: center;
  margin-top: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    padding: 40px 15px;
  }

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

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

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

  .page-gdpr__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-gdpr__content-area {
    padding: 20px 15px;
  }

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

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

  .page-gdpr__section-image {
    max-width: 100%;
    height: auto; /* Ensure images do not overflow */
  }

  /* Ensure all content area images are responsive and do not cause overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}