.page-gdpr {
  padding: 10px 15px 40px;
  max-width: 1390px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
  color: #000000; /* Default text color */
  background-color: #FFFFFF; /* Page background */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 10px; /* Small top padding, relying on body padding for header offset */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9; /* Adjusted for a typical hero image aspect ratio */
  object-fit: cover;
  object-position: center;
}

.page-gdpr__hero-content {
  max-width: 900px;
}

.page-gdpr__main-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #26A9E0; /* Primary color for main title */
}

.page-gdpr__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #000000;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #EA7C07; /* Login/CTA color */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  min-width: 200px; /* Ensure button is not too small */
  text-align: center;
}

.page-gdpr__cta-button:hover {
  background-color: #cc6a06;
}

.page-gdpr__section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.page-gdpr__sub-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #26A9E0;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-gdpr__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #000000;
}

.page-gdpr__content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

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

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

.page-gdpr__image-container {
  flex: 1;
  margin: 0;
  min-width: 250px; /* Ensure image container has a minimum width */
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Minimum size for content images */
  min-height: 200px;
}

.page-gdpr__rights-list, .page-gdpr__data-list, .page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-gdpr__list-item {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #000000;
}

.page-gdpr__list-item::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-gdpr__cta-button--contact {
  margin-top: 20px;
  background-color: #26A9E0;
}

.page-gdpr__cta-button--contact:hover {
  background-color: #1e87bb;
}

.page-gdpr__last-updated {
  text-align: right;
  font-size: 0.9rem;
  color: #555555;
  margin-top: 30px;
}

.page-gdpr__faq-list {
  margin-top: 20px;
}

.page-gdpr__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #eee;
}

.page-gdpr__faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-gdpr__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
}

/* Mobile Responsiveness */
@media (max-width: 849px) {
  .page-gdpr {
    padding: 10px 12px 30px;
  }

  .page-gdpr__hero-section {
    margin-bottom: 30px;
  }

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

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

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

  .page-gdpr__content-wrapper {
    flex-direction: column;
    gap: 20px;
  }

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

  .page-gdpr__image-container {
    min-width: unset;
    width: 100%;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.2rem;
  }

  .page-gdpr__paragraph, .page-gdpr__list-item, .page-gdpr__faq-question, .page-gdpr__faq-answer {
    font-size: 0.95rem;
  }
}

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

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

  .page-gdpr__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 160px;
  }

  .page-gdpr__section {
    padding: 15px;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.1rem;
  }

  .page-gdpr__paragraph, .page-gdpr__list-item, .page-gdpr__faq-question, .page-gdpr__faq-answer {
    font-size: 0.9rem;
  }

  .page-gdpr__list-item::before {
    font-size: 0.9rem;
    top: 3px;
  }

  .page-gdpr__hero-image {
    aspect-ratio: 4/3; /* More compact on small mobile */
  }
}

/* Ensure content images are never smaller than 200px by CSS */
.page-gdpr__content-image {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr {
    max-width: 100%;
    overflow-x: hidden;
  }
}