.page-gdpr {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Minimal top padding as body handles header offset */
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  z-index: 2;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFFFF;
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #1F2D3D;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__introduction-section,
.page-gdpr__principles-section,
.page-gdpr__rights-section,
.page-gdpr__data-security-section,
.page-gdpr__contact-section {
  padding: 40px 0;
}

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

.page-gdpr__text-content--small {
  font-size: 0.9rem;
  text-align: center;
}

.page-gdpr__link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
}

.page-gdpr__image-and-text {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

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

.page-gdpr__content-image {
  flex: 0 0 40%;
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-gdpr__list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-gdpr__list-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #1F2D3D;
}

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

.page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-gdpr__right-card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-gdpr__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr__card-description {
  font-size: 0.95rem;
  color: #1F2D3D;
  margin-bottom: 0;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page-gdpr__button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-gdpr__button--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-gdpr__contact-section {
  text-align: center;
  padding-bottom: 60px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-gdpr__container {
    padding: 20px 30px;
  }

  .page-gdpr__hero-content {
    padding: 30px 20px;
  }

  .page-gdpr__image-and-text {
    flex-direction: column;
    align-items: center;
  }

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

  .page-gdpr__content-image {
    max-width: 80%;
    flex: none;
  }
}

@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 20px;
  }

  .page-gdpr__hero-content {
    padding: 20px;
  }

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

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

  .page-gdpr__section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-gdpr__text-content {
    font-size: 0.95rem;
  }

  .page-gdpr__content-image {
    max-width: 100%; /* Ensure images don't overflow */
    width: 100%;
    height: auto;
  }

  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__list-item {
    padding: 12px 15px;
    margin-bottom: 10px;
  }

  .page-gdpr__right-card {
    padding: 20px;
  }

  .page-gdpr__card-title {
    font-size: 1.15rem;
  }

  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Image CSS size lower limit check for .page-gdpr__content-image */
/* This rule ensures content images are not displayed smaller than 200px. */
/* The max-width: 100% in mobile media query handles responsiveness while respecting the lower limit. */
.page-gdpr__content-image {
  min-width: 200px;
  min-height: 200px;
}