.page-gdpr {
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
}

.page-gdpr__hero-section {
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin-top: 20px;
  padding: 0 15px;
}

.page-gdpr__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-gdpr__description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

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

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__section-title {
  font-size: 2rem;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 2px solid var(--divider);
  padding-bottom: 10px;
}

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

.page-gdpr__text-block {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-gdpr__list-item strong {
  color: var(--text-main);
}

.page-gdpr__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
}

.page-gdpr__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.page-gdpr__call-to-action {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: var(--deep-green);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-text {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 25px;
  font-weight: 500;
}

.page-gdpr__cta-button--bottom {
  padding: 18px 40px;
  font-size: 1.2rem;
}

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

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

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

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

  .page-gdpr__container {
    padding: 20px;
  }

  .page-gdpr__section-title {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-gdpr__image {
    float: none;
    margin: 20px auto;
    max-width: 100%;
    display: block;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    margin-left: auto;
    margin-right: auto;
  }

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

  .page-gdpr__cta-text {
    font-size: 1rem;
  }

  .page-gdpr__cta-button, .page-gdpr__cta-button--bottom {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-gdpr__container img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.3rem, 8vw, 1.8rem);
  }

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

  .page-gdpr__container {
    padding: 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.3rem;
  }

  .page-gdpr__list {
    margin-left: 20px;
  }
}