.page-gdpr {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
}

.page-gdpr__dark-bg {
  background-color: #E53935;
  color: #ffffff; /* White text for dark background */
}

.page-gdpr__light-bg {
  background-color: #F5F7FA;
  color: #333333; /* Dark text for light background */
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

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

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: -100px; /* Overlap with image slightly for visual effect */
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background-color: #ffffff; /* Explicit white background for content */
  color: #333333;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: #E53935;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-gdpr__intro-text {
  font-size: 1.15em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
}

.page-gdpr__btn-secondary {
  background-color: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
}

.page-gdpr__btn-secondary:hover {
  background-color: #E53935;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 57, 53, 0.2);
}

.page-gdpr__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-gdpr__container--narrow {
  max-width: 800px;
}

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  margin-bottom: 20px;
  color: #E53935;
}

.page-gdpr__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-gdpr__section--what-is-gdpr .page-gdpr__section-description,
.page-gdpr__section--how-we-protect .page-gdpr__section-description,
.page-gdpr__section--transparency .page-gdpr__section-description,
.page-gdpr__section--contact .page-gdpr__section-description {
  color: #333333;
}

.page-gdpr__section--your-rights .page-gdpr__section-description,
.page-gdpr__section--transparency .page-gdpr__section-description,
.page-gdpr__section--conclusion .page-gdpr__conclusion-text {
  color: #ffffff;
}

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

.page-gdpr__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #E0E0E0;
  color: #333333;
}

.page-gdpr__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-gdpr__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  font-size: 1em;
  color: #333333;
}

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

.page-gdpr__right-item {
  text-align: left;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  box-sizing: border-box;
}

.page-gdpr__right-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #FF5A4F;
  margin-bottom: 10px;
}

.page-gdpr__right-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

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

.page-gdpr__info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__info-card {
  text-align: left;
}

.page-gdpr__info-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-gdpr__info-card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 15px;
}

.page-gdpr__info-card-text {
  font-size: 1em;
  color: #333333;
}

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

.page-gdpr__transparency-card {
  text-align: left;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  box-sizing: border-box;
}

.page-gdpr__transparency-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #FF5A4F;
  margin-bottom: 10px;
}

.page-gdpr__transparency-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-gdpr__contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__contact-item {
  text-align: left;
}

.page-gdpr__contact-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 15px;
}

.page-gdpr__contact-text {
  font-size: 1em;
  color: #333333;
}

.page-gdpr__conclusion-text {
  font-size: 1.15em;
  line-height: 1.7;
  color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-gdpr__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
    border-radius: 8px;
  }

  .page-gdpr__main-title {
    font-size: 2em;
  }

  .page-gdpr__intro-text {
    font-size: 1em;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
  }

  .page-gdpr__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-gdpr__card-grid,
  .page-gdpr__rights-list,
  .page-gdpr__info-cards,
  .page-gdpr__transparency-cards,
  .page-gdpr__contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card,
  .page-gdpr__right-item,
  .page-gdpr__info-card,
  .page-gdpr__transparency-card,
  .page-gdpr__contact-item {
    padding: 20px;
  }

  .page-gdpr__card-image,
  .page-gdpr__info-card-image {
    height: 180px;
  }

  .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__hero-image-wrapper,
  .page-gdpr__rights-list,
  .page-gdpr__info-cards,
  .page-gdpr__transparency-cards,
  .page-gdpr__contact-info,
  .page-gdpr__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  
  .page-gdpr__cta-buttons--center {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}