.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body already has padding-top */
  text-align: center;
  overflow: hidden;
  background-color: var(--deep-green);
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* Ensure no filter changes image color */
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 3.5vw, 2.8em);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 20px;
}

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

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--card-b-g);
  color: var(--glow);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  border: 2px solid var(--glow);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__btn-secondary:hover {
  background: var(--glow);
  color: var(--card-b-g);
  transform: translateY(-2px);
}

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

.page-gdpr__introduction {
  background-color: var(--background);
}

.page-gdpr__data-collection, .page-gdpr__card-bg {
  background-color: var(--card-b-g);
}

.page-gdpr__dark-section {
  background-color: var(--deep-green);
  color: var(--text-main);
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-gdpr__sub-title {
  font-size: 1.6em;
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 600;
}

.page-gdpr__card-title {
  font-size: 1.4em;
  color: var(--glow);
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-gdpr__card-text {
  font-size: 1em;
  color: var(--text-secondary);
}

.page-gdpr__highlight {
  color: var(--gold);
  font-weight: bold;
}

.page-gdpr__grid-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

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

.page-gdpr__card {
  background-color: var(--background);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 25px;
}

.page-gdpr__list--numbered .page-gdpr__list-item {
  counter-increment: list-counter;
}

.page-gdpr__list--numbered .page-gdpr__list-item::before {
  content: counter(list-counter) ". ";
  color: var(--glow);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-gdpr__list--bullet .page-gdpr__list-item::before {
  content: "\2022"; /* Unicode for bullet point */
  color: var(--glow);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

.page-gdpr__list--checked .page-gdpr__list-item::before {
  content: "\2713"; /* Unicode for checkmark */
  color: var(--glow);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

.page-gdpr__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  object-fit: cover;
  filter: none; /* Ensure no filter changes image color */
}

.page-gdpr__link {
  color: var(--glow);
  text-decoration: none;
  font-weight: bold;
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    padding: 0 30px;
  }
}

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

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-gdpr__hero-content {
    margin-top: 30px;
    padding: 0 15px;
  }

  .page-gdpr__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-gdpr__sub-title {
    font-size: 1.4em;
  }

  .page-gdpr__grid-two-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  /* Ensure all images are responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all containers holding images are responsive */
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Ensure buttons are responsive */
  .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;
    margin-bottom: 10px; /* Add space between stacked buttons */
  }

  /* If multiple buttons, stack them vertically on mobile */
  .page-gdpr__hero-content > a.page-gdpr__btn-primary, 
  .page-gdpr__contact-us > a.page-gdpr__btn-secondary {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.6em;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.2em;
  }
}