.page-gdpr {
  color: #ffffff; /* Body background is dark, so text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  background: linear-gradient(135deg, #26A9E0, #0a0a0a);
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #FFFFFF;
  max-width: 100%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #FFFFFF; /* Lighter background for main content */
  color: #333333; /* Dark text on light background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__section-title:first-of-type {
  margin-top: 0;
}

.page-gdpr__content-area p {
  margin-bottom: 1em;
  line-height: 1.7;
  font-size: 1.05em;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 1em;
}

.page-gdpr__list-item {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.page-gdpr__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

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

.page-gdpr__content-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-gdpr__content-image--small {
  max-width: 40%;
  margin: 0 auto;
}

.page-gdpr__image-text-block .page-gdpr__list {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding-left: 0;
}

.page-gdpr__image-text-block .page-gdpr__list-item {
  position: relative;
  padding-left: 25px;
}

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

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-gdpr__cta-buttons--bottom {
  margin-top: 50px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary,
.page-gdpr__contact-info .page-gdpr__link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.page-gdpr__btn-primary {
  background: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-gdpr__btn-primary:hover {
  background: #1e87c0;
  border-color: #1e87c0;
}

.page-gdpr__btn-secondary {
  background: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-gdpr__btn-secondary:hover {
  background: #f0f0f0;
  color: #1e87c0;
  border-color: #1e87c0;
}

.page-gdpr__contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  color: #333333;
}

.page-gdpr__contact-info .page-gdpr__text-block {
  margin-bottom: 15px;
}

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

.page-gdpr__contact-info .page-gdpr__list-item {
  margin-bottom: 10px;
}

.page-gdpr__contact-info .page-gdpr__link {
  color: #26A9E0;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
}

.page-gdpr__contact-info .page-gdpr__link:hover {
  color: #1e87c0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.5em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__image-text-block {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__image-text-block--reverse {
    flex-direction: column;
  }
  .page-gdpr__content-image {
    max-width: 80%;
  }
  .page-gdpr__content-image--small {
    max-width: 60%;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-gdpr__hero-content {
    padding: 0 15px;
  }
  .page-gdpr__main-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__content-area {
    padding: 30px 15px;
    margin-top: -30px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__list {
    margin-left: 20px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__image-text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__content-image {
    max-width: 100%;
    min-width: auto;
  }
  .page-gdpr__content-image--small {
    max-width: 80%;
  }
  .page-gdpr__contact-info {
    padding: 20px 15px;
  }
  .page-gdpr video,
  .page-gdpr__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-gdpr__video-section {
    padding-top: 10px !important;
  }
  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}