.page-gdpr {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6); /* Darken image slightly for text readability, not changing color */
}

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 450px; /* Fixed height for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  padding: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__hero-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #F0F0F0;
}

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

.page-gdpr__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-gdpr__content-section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__sub-title {
  font-size: 1.6em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__paragraph {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.8;
}

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

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-gdpr__list-item p {
  margin-top: 5px;
  margin-bottom: 0;
}

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

.page-gdpr__link:hover {
  color: #FCBC45;
}

.page-gdpr__image {
  width: 400px;
  height: auto;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-gdpr__button-group {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
  clear: both; /* Clear floats from images */
}

.page-gdpr__button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 0 10px;
  cursor: pointer;
  border: none;
}

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

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

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

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

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

.page-gdpr__button--explore:hover {
  background-color: #333333;
  color: #FFFFFF;
  border-color: #333333;
}

.page-gdpr__related-links {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__list--inline {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gdpr__list--inline .page-gdpr__list-item {
  margin: 0 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

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

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

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

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

  .page-gdpr__hero-container {
    height: 350px;
  }

  .page-gdpr__image {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 400px; /* Ensure images don't overflow */
    height: auto;
    display: block;
  }

  .page-gdpr__image--left, .page-gdpr__image--right {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .page-gdpr__button {
    display: block;
    margin: 15px auto;
    width: 80%;
  }

  .page-gdpr__list--inline .page-gdpr__list-item {
    margin: 10px;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px); /* Maintain header offset on mobile */
  }

  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-gdpr__hero-container {
    height: 300px;
  }

  .page-gdpr__button {
    width: 90%;
  }
}