.page-gdpr {
  background-color: var(--light-bg);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 10px 0 50px;
}

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

.page-gdpr__hero-section {
  background-color: var(--main-red);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--white);
}

.page-gdpr__description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-gdpr__section-title {
  font-size: 2em;
  font-weight: bold;
  color: var(--main-red);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-gdpr__text-block {
  margin-bottom: 20px;
  font-size: 1em;
  text-align: justify;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
}

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

.page-gdpr__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  filter: none; /* Ensure no CSS filters */
}

.page-gdpr__button-group {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  margin: 0 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  color: var(--white);
  background: linear-gradient(180deg, var(--accent-red) 0%, var(--main-red) 100%);
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__button:hover {
  background: linear-gradient(180deg, #FF7F7F 0%, #E55B5B 100%); /* Slightly lighter on hover */
}

.page-gdpr__button--secondary {
  background: var(--text-main);
}

.page-gdpr__button--secondary:hover {
  background: #555555;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 0;
  }

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

  .page-gdpr__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

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

  .page-gdpr__button {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }

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

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

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

  .page-gdpr__list {
    margin-left: 0;
    padding-left: 15px;
  }

  .page-gdpr__text-block {
    text-align: left;
  }
}