.page-gdpr {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  padding: 10px 20px 40px;
  text-align: center;
  background-color: #111111;
  border-bottom: 1px solid #3A2A12;
}

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

.page-gdpr__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2C14E;
}

.page-gdpr__description {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  max-width: 700px;
  margin: 0 auto;
}

.page-gdpr__compliance-section,
.page-gdpr__data-processing-section,
.page-gdpr__security-section {
  padding: 40px 20px;
  border-bottom: 1px solid #3A2A12;
}

.page-gdpr__compliance-section:last-of-type,
.page-gdpr__data-processing-section:last-of-type,
.page-gdpr__security-section:last-of-type {
    border-bottom: none;
}

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

.page-gdpr__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #FFD36B;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__text-content {
  margin-bottom: 20px;
  font-size: 1rem;
}

.page-gdpr__rights-list,
.page-gdpr__processing-list,
.page-gdpr__security-measures-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-gdpr__list-item strong {
  color: #F2C14E;
}

.page-gdpr__image-figure {
  margin: 30px auto;
  max-width: 800px;
  text-align: center;
}

.page-gdpr__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  filter: none; /* Ensure no color filters are applied */
}

.page-gdpr__image-caption {
  font-size: 0.9rem;
  color: #FFD36B;
  margin-top: 10px;
}

.page-gdpr__contact-link {
  color: #FFD36B;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #F2C14E;
}

@media (max-width: 768px) {
  .page-gdpr__hero-section,
  .page-gdpr__compliance-section,
  .page-gdpr__data-processing-section,
  .page-gdpr__security-section {
    padding: 25px 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

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

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

  .page-gdpr__rights-list,
  .page-gdpr__processing-list,
  .page-gdpr__security-measures-list {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .page-gdpr__description {
    font-size: clamp(0.85rem, 3vw, 1rem);
  }

  .page-gdpr__section-title {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }

  .page-gdpr__text-content,
  .page-gdpr__list-item,
  .page-gdpr__image-caption {
    font-size: 0.95rem;
  }
}

/* Ensure images within content area are at least 200px if not responsive */
.page-gdpr img:not(.shared-header__logo):not(.shared-footer__icon) {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .page-gdpr img:not(.shared-header__logo):not(.shared-footer__icon) {
        max-width: 100%;
        height: auto;
        min-width: unset; /* Remove min-width on mobile to allow smaller display if needed by layout, but still no tiny icons */
        min-height: unset;
    }
}