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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-gdpr__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  width: 100%;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 20px;
  max-width: 100%;
  /* Using clamp for responsive font-size, if strictly necessary, but prefer not to hardcode */
  /* font-size: clamp(2.5rem, 5vw, 3.5rem); */
}

.page-gdpr__intro-text {
  font-size: 1.125rem;
  margin-bottom: 30px;
  color: var(--custom-color-1776249996415);
}

.page-gdpr__hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  font-size: 1rem;
}

.page-gdpr__button--primary {
  background: var(--button);
  color: #FFFFFF;
}

.page-gdpr__button--primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-gdpr__button--secondary {
  background-color: var(--auxiliary-color);
  color: #FFFFFF;
}

.page-gdpr__button--secondary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-gdpr__content-section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--border);
}

.page-gdpr__content-section--white {
  background-color: var(--card-b-g);
}

.page-gdpr__content-section--light-blue {
  background-color: var(--background);
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__section-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__paragraph {
  font-size: 1.125rem;
  margin-bottom: 20px;
  color: var(--custom-color-1776249996415);
}

.page-gdpr__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__image--centered {
  text-align: center;
}

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

.page-gdpr__list-item {
  background-color: var(--card-b-g);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--custom-color-1776249996415);
  transition: box-shadow 0.3s ease;
}

.page-gdpr__list-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1rem;
  color: var(--custom-color-1776249996415);
}

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

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: 2rem;
  }

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

  .page-gdpr__paragraph, .page-gdpr__intro-text, .page-gdpr__list-item, .page-gdpr__contact-item {
    font-size: 1rem;
  }

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

  .page-gdpr__button {
    width: 100%;
  }

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

  /* Mobile image overflow prevention */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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