.page-gdpr {
  color: #333333; /* Dark text for light body background */
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF; /* White text for dark background */
  text-align: center;
  padding-bottom: 60px;
}

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

.page-gdpr__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-gdpr__hero-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

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

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1rem;
  min-width: 150px;
  text-align: center;
}

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

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

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

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

.page-gdpr__section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

.page-gdpr__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-gdpr__content-block--reversed {
  flex-direction: row-reverse;
}

.page-gdpr__content-block--centered {
  flex-direction: column;
  text-align: center;
}

.page-gdpr__content-block p {
  flex: 1;
  line-height: 1.8;
  font-size: 1rem;
  color: #333333;
}

.page-gdpr__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px; /* Minimum width for image wrapper */
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-gdpr__list-item {
  background-color: #FFFFFF;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  color: #333333;
}

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

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

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

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

.page-gdpr__button--download:hover {
  background-color: #E0A030;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.8rem;
  }
  .page-gdpr__section-title {
    font-size: 2rem;
  }
  .page-gdpr__content-block {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__content-block--reversed {
    flex-direction: column;
  }
  .page-gdpr__image-wrapper {
    margin-bottom: 20px;
  }
  .page-gdpr__list {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2rem;
  }
  .page-gdpr__hero-description {
    font-size: 1rem;
  }
  .page-gdpr__section-title {
    font-size: 1.8rem;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__content-block {
    gap: 20px;
  }
  .page-gdpr__button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  /* Content area images must not cause horizontal scroll */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8rem;
  }
  .page-gdpr__section-title {
    font-size: 1.5rem;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
  }
  .page-gdpr__button {
    width: 100%;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
}