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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background-color: #1A237E; /* Fallback background */
}

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

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 60px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.page-gdpr__hero-content {
  color: #ffffff;
  max-width: 800px;
}

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

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

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

.page-gdpr__hero-button:hover {
  background-color: #e5c100;
  color: #0d124d;
}

.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
}

.page-gdpr__sub-section-title {
  font-size: 1.8em;
  color: #1A237E;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

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

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

.page-gdpr__image-left,
.page-gdpr__image-right {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image-left img,
.page-gdpr__image-right img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-gdpr__text-left,
.page-gdpr__text-right {
  flex: 1;
  max-width: 50%;
  color: #333333;
}

.page-gdpr__data-rights-list,
.page-gdpr__contact-list,
.page-gdpr__policy-list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
  color: #333333;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-gdpr__list-item::before {
  content: '•';
  color: #FFD700;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: -2px;
}

.page-gdpr__link {
  color: #1A237E;
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

.page-gdpr__related-links {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  text-align: center;
}

.page-gdpr__policy-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  margin-left: 0;
}

.page-gdpr__policy-list .page-gdpr__list-item {
  padding-left: 0;
}

.page-gdpr__policy-list .page-gdpr__list-item::before {
  content: none;
}

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

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

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

  .page-gdpr__sub-section-title {
    font-size: 1.5em;
  }

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

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

  .page-gdpr__image-left,
  .page-gdpr__image-right,
  .page-gdpr__text-left,
  .page-gdpr__text-right {
    max-width: 100%;
    flex: none;
  }

  .page-gdpr__image-left img,
  .page-gdpr__image-right img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size even on mobile */
    min-height: 200px; /* Ensure minimum size even on mobile */
  }

  .page-gdpr__policy-list {
    flex-direction: column;
    align-items: center;
  }
}