.page-gdpr {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background for hero to contrast with gold/red */
  color: #ffffff;
  padding-bottom: 40px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim the image to make text more readable */
}

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
  width: 90%;
  z-index: 1;
  padding: 20px;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.page-gdpr__section {
  margin-bottom: 60px;
  padding: 30px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__section-title {
  font-size: 2em;
  color: #8B0000;
  margin-bottom: 25px;
  text-align: center;
}

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

.page-gdpr__image-text-group {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.page-gdpr__image-text-group--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__image-left,
.page-gdpr__image-right {
  flex: 1;
  min-width: 200px; /* Enforce min image size */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 600px;
  height: 450px;
  object-fit: cover;
}

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

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

.page-gdpr__list-item {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #333333;
}

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

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

.page-gdpr__section--cta {
  text-align: center;
  background-color: #8B0000;
  color: #ffffff;
  padding: 50px;
}

.page-gdpr__section--cta .page-gdpr__section-title {
  color: #FFD700;
}

.page-gdpr__section--cta .page-gdpr__text {
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-gdpr__button--primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-gdpr__button--primary:hover {
  background-color: #e6c200;
  color: #6a0000;
}

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__image-text-group {
    flex-direction: column;
  }

  .page-gdpr__image-text-group--reverse {
    flex-direction: column;
  }

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

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

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

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

  .page-gdpr__hero-image,
  .page-gdpr__image-left,
  .page-gdpr__image-right {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__button {
    font-size: 1em;
    padding: 10px 20px;
  }

  .page-gdpr__hero-content {
    padding: 15px;
  }

  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure mobile hero content also respects header offset */
    padding-bottom: 20px;
  }

  .page-gdpr__content-area {
    padding: 20px 15px;
  }

  .page-gdpr__section {
    padding: 20px;
    margin-bottom: 40px;
  }
}