.page-gdpr {
  color: #333333; /* Dark text on 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__hero-section {
  position: relative;
  background-color: #000000; /* Dark background for hero text overlay */
  color: #FFFFFF;
  padding: 0;
  overflow: hidden;
}

.page-gdpr__hero-image {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.6;
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark overlay for readability */
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
}

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

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

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  font-size: 1em;
}

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

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

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

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

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

.page-gdpr__section:nth-of-type(odd) {
  background-color: #f9f9f9;
}

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

.page-gdpr__container--two-col {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-gdpr__container--reverse {
  flex-direction: row-reverse;
}

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

.page-gdpr__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-gdpr__list-item {
  background-color: #f0f0f0;
  padding: 15px;
  margin-bottom: 10px;
  border-left: 5px solid #FCBC45;
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__content-image {
  display: block;
  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__image-wrapper {
  flex: 1;
  min-width: 300px; /* Ensure images don't get too small */
}

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__button--learn-more,
.page-gdpr__button--contact {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 20px;
}

.page-gdpr__button--learn-more:hover,
.page-gdpr__button--contact:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-gdpr__small-text {
  font-size: 0.9em;
  color: #666666;
  text-align: center;
  margin-top: 30px;
}

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

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

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

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-gdpr__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-gdpr__container--two-col {
    flex-direction: column;
  }
  .page-gdpr__image-wrapper {
    order: -1; /* Image appears before text on mobile */
  }
  .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
  }
  /* Content area images must not cause overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__button {
    padding: 10px 20px;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
}