.page-gdpr {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

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

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  color: #FFFFFF; /* White text on dark hero background */
  max-width: 800px;
  margin: 0 auto;
}

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

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

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

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

.page-gdpr__button--register {
  background-color: #000000; /* Black background for Register button */
  color: #FFFFFF; /* White text for Register button */
  border: 2px solid #FFFFFF;
}

.page-gdpr__button--register:hover {
  background-color: #333333;
  border-color: #FCBC45;
}

.page-gdpr__button--login {
  background-color: #FCBC45; /* Gold background for Login button */
  color: #000000; /* Black text for Login button */
  border: 2px solid #FCBC45;
}

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

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #EEEEEE;
}

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

.page-gdpr__section--intro {
  background-color: #F8F8F8;
}

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

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

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

.page-gdpr__list-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;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  max-width: 600px; /* Default for content images */
  margin: 0 auto 30px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.page-gdpr__section--contact .page-gdpr__contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

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

.page-gdpr__section--contact .page-gdpr__button--contact:hover {
  background-color: #333333;
  border-color: #FCBC45;
}

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

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

  .page-gdpr__image--right, .page-gdpr__image--left {
    float: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
}

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

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

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

  .page-gdpr__button {
    width: 80%;
    margin: 0 auto;
  }

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

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

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

  .page-gdpr__section--contact .page-gdpr__contact-buttons {
    flex-direction: column;
  }

  /* Critical: Prevent content overflow on mobile */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-gdpr {
    overflow-x: hidden;
  }
}

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

  .page-gdpr__button {
    width: 90%;
  }

  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-section {
    padding: 60px 0;
  }
}