.page-gdpr {
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Add some padding at the bottom */
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding for internal pages, body handles --header-offset */
  margin-bottom: 40px;
}

.page-gdpr__hero-banner {
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.page-gdpr__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 5; /* 1920x600 ratio */
  object-fit: cover;
  object-position: center;
}

.page-gdpr__hero-content {
  text-align: center;
  padding: 20px 15px;
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted for GDPR page, still clamp */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F3C54D; /* Gold */
}

.page-gdpr__description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section {
  padding: 30px 15px;
  margin-bottom: 30px;
  background-color: #2A1212; /* Card BG */
  border-radius: 10px;
  border: 1px solid #6A1E1E; /* Border */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__heading {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  text-align: center;
}

.page-gdpr__paragraph {
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-gdpr__image-container {
  margin: 25px auto;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  max-width: 800px; /* Match img width attribute for consistency */
  border: 1px solid #6A1E1E;
}

.page-gdpr__image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* Prohibit filter */
}

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

.page-gdpr__list-item {
  background-color: #140C0C; /* Background */
  border-left: 4px solid #F3C54D; /* Gold */
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list-item strong {
  color: #E53030; /* Auxiliary color */
}

.page-gdpr__button {
  display: block;
  width: fit-content;
  margin: 20px auto 0 auto;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
  color: #140C0C; /* Dark text for contrast on bright button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-gdpr__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-gdpr__heading {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .page-gdpr__description,
  .page-gdpr__paragraph,
  .page-gdpr__list-item {
    font-size: 0.95rem;
  }

  .page-gdpr__section {
    padding: 20px 10px;
    margin-left: 10px;
    margin-right: 10px;
  }

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

  .page-gdpr__content-wrapper {
    padding: 0 5px;
  }

  .page-gdpr__image-container img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    padding-top: 5px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }
  .page-gdpr__heading {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }
  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Global image CSS constraint check (min 200px) */
.page-gdpr img:not(.shared-header img):not(.shared-footer img) {
    min-width: 200px; /* Ensure content images are not smaller than 200px */
    min-height: 200px;
}
@media (max-width: 768px) {
  .page-gdpr img:not(.shared-header img):not(.shared-footer img) {
    max-width: 100%;
    height: auto;
    min-width: unset; /* Allow flexible sizing on mobile, but still no tiny icons */
    min-height: unset;
  }
}