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

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

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-gdpr__hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-gdpr__hero-content {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

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

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

.page-gdpr__cta-button {
  background-color: #CC0000; /* Main brand red */
  color: #ffffff;
  border: 2px solid #CC0000;
}

.page-gdpr__cta-button:hover {
  background-color: #e06666;
  transform: translateY(-2px);
}

.page-gdpr__secondary-button {
  background-color: transparent;
  color: #FFD700; /* Gold for secondary button text */
  border: 2px solid #FFD700;
}

.page-gdpr__secondary-button:hover {
  background-color: #FFD700;
  color: #CC0000;
  transform: translateY(-2px);
}

.page-gdpr__content-section {
  padding: 60px 20px;
}

.page-gdpr__section--dark {
  background-color: #1a1a1a; /* Dark background for contrast sections */
  color: #ffffff;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #CC0000; /* Red for section titles */
}

.page-gdpr__section--dark .page-gdpr__section-title {
  color: #FFD700; /* Gold for titles on dark background */
}

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

.page-gdpr__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-gdpr__list-item {
  background-color: rgba(255, 255, 255, 0.05); /* Subtle background for list items on dark sections */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.1em;
  line-height: 1.6;
  border-left: 5px solid #CC0000;
}

.page-gdpr__section--dark .page-gdpr__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: #FFD700;
}

.page-gdpr__inline-link {
  color: #CC0000;
  text-decoration: underline;
}

.page-gdpr__section--dark .page-gdpr__inline-link {
  color: #FFD700;
}

.page-gdpr__inline-link:hover {
  text-decoration: none;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

  .page-gdpr__hero-description,
  .page-gdpr__text-block,
  .page-gdpr__list-item {
    font-size: 1em;
  }

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

  .page-gdpr__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }

  .page-gdpr__content-section {
    padding: 40px 15px;
  }

  .page-gdpr__cta-button,
  .page-gdpr__secondary-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-gdpr__button-group {
    flex-direction: column;
  }

  /* Ensure content images do not overflow on mobile */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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