.page-gdpr {
  color: #000000; /* Dark text for light background */
  background-color: var(--secondary-color, #FFFFFF); /* Page background, assuming light */
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px);
  background-color: #000000; /* Dark background for hero to make white text pop */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  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.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
  font-weight: bold;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #F0F0F0;
  line-height: 1.6;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__button--register {
  background-color: #FFFFFF;
  color: #000000; /* Dark text on white button */
}

.page-gdpr__button--register:hover {
  background-color: #E0E0E0;
  transform: translateY(-2px);
}

.page-gdpr__button--login {
  background-color: #FCBC45;
  color: #000000; /* Dark text on golden button */
}

.page-gdpr__button--login:hover {
  background-color: #E0A73B;
  transform: translateY(-2px);
}

.page-gdpr__button--join {
  background-color: #FCBC45;
  color: #000000; /* Dark text on golden button */
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-gdpr__button--join:hover {
  background-color: #E0A73B;
  transform: translateY(-2px);
}

.page-gdpr__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.7;
  font-size: 1.05em;
}

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

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

.page-gdpr__paragraph {
  margin-bottom: 20px;
  color: #333333;
}

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

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

.page-gdpr__list-item strong {
  color: #000000;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--centered {
  max-width: 800px;
}

.page-gdpr__image--wide {
  max-width: 1000px;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

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

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

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

.page-gdpr__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 15px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__cta-description {
  font-size: 1.3em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #F0F0F0;
  line-height: 1.6;
}

.page-gdpr__resource-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: center;
}

.page-gdpr__resource-item {
  margin-bottom: 15px;
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }

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

  .page-gdpr__hero-description {
    font-size: 1em;
    max-width: 90%;
  }

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

  .page-gdpr__button {
    width: 80%;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-gdpr__button--join {
    width: 90%;
    font-size: 1.1em;
    padding: 15px 30px;
  }

  .page-gdpr__content-area {
    padding: 30px 15px;
    font-size: 1em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
    padding-top: 20px;
  }

  .page-gdpr__subsection-title {
    font-size: 1.5em;
    margin-top: 30px;
  }

  .page-gdpr__image {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
  }

  .page-gdpr__cta-section {
    padding: 40px 15px;
    margin-top: 40px;
  }

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

  .page-gdpr__cta-description {
    font-size: 1.1em;
    max-width: 90%;
  }

  /* Ensure all images within .page-gdpr are responsive and don't overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

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

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

  .page-gdpr__subsection-title {
    font-size: 1.3em;
  }

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

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