.page-gdpr {
  background-color: #F5F7FA;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for content, body handles --header-offset */
}

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

.page-gdpr__hero-section {
  background-color: #E53935;
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.page-gdpr__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__content-section {
  padding: 80px 0;
}

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

.page-gdpr__content-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-gdpr__content-flex--reverse {
  flex-direction: row-reverse;
}

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

.page-gdpr__image-wrapper {
  flex: 1;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__image-caption {
  text-align: center;
  font-size: 0.9em;
  color: #666666;
  padding: 10px;
  background-color: #f0f0f0;
}

.page-gdpr__heading {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 25px;
  color: #E53935;
}

.page-gdpr__heading--center {
  text-align: center;
}

.page-gdpr__paragraph {
  margin-bottom: 20px;
}

.page-gdpr__paragraph--center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-gdpr__list-item::before {
  content: '✔'; /* Using a simple checkmark for now */
  color: #d6d604; /* Yellow-green accent */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-gdpr__button--primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
}

.page-gdpr__button--primary:hover {
  opacity: 0.9;
}

.page-gdpr__button--secondary {
  background-color: #d6d604; /* Yellow-green accent */
  color: #333333;
}

.page-gdpr__button--secondary:hover {
  background-color: #c0c000;
}

.page-gdpr__contact-section {
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__button-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px; /* Use gap for spacing between buttons */
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-gdpr__content-flex {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__content-flex--reverse {
    flex-direction: column;
  }

  .page-gdpr__hero-section {
    padding: 40px 0;
  }

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

  .page-gdpr__description {
    font-size: 1rem;
  }

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

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

  .page-gdpr__text-content {
    order: 2; /* Put text below image on mobile for reverse flex */
  }

  .page-gdpr__image-wrapper {
    order: 1;
  }

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

  .page-gdpr__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 549px) {
  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__hero-section {
    padding: 30px 0;
  }

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

  .page-gdpr__description {
    font-size: 0.95rem;
  }

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

  .page-gdpr__heading {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }

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

  .page-gdpr__button {
    width: 100%;
    max-width: 280px;
  }

  .page-gdpr__button--secondary {
    margin-top: 10px;
  }

  .page-gdpr__image {
    min-width: unset;
    min-height: unset;
  }
}