.page-gdpr {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-gdpr__hero-section {
  position: relative;
  background-color: #007bff;
  color: #ffffff;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffc107;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-gdpr__hero-button,
.page-gdpr__link-button,
.page-gdpr__contact-button,
.page-gdpr__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #000000;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__hero-button:hover,
.page-gdpr__link-button:hover,
.page-gdpr__contact-button:hover,
.page-gdpr__cta-button:hover {
  background-color: #e0a800;
  color: #333333;
}

.page-gdpr__section {
  padding: 60px 20px;
  margin: 0 auto;
  border-bottom: 1px solid #eeeeee;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__section-title,
.page-gdpr__content-title,
.page-gdpr__cta-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__content-title {
  text-align: left;
}

.page-gdpr__section-text,
.page-gdpr__content-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444444;
}

.page-gdpr__container--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-gdpr__container--reverse-grid {
  grid-template-columns: 1fr 1fr;
}

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

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__rights-item {
  background-color: #f8f9fa;
  border-left: 5px solid #007bff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
}

.page-gdpr__rights-item strong {
  color: #0056b3;
}

.page-gdpr__cta-bottom {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-gdpr__cta-title {
  color: #ffc107;
  margin-bottom: 20px;
  font-size: 2.5em;
}

.page-gdpr__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

  .page-gdpr__hero-description {
    font-size: 1.1em;
  }

  .page-gdpr__section-title,
  .page-gdpr__content-title,
  .page-gdpr__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-content {
    max-width: 90%;
  }

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

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__hero-button,
  .page-gdpr__link-button,
  .page-gdpr__contact-button,
  .page-gdpr__cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }

  .page-gdpr__container--grid,
  .page-gdpr__container--reverse-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-gdpr__content-title {
    text-align: center;
  }

  .page-gdpr__section,
  .page-gdpr__cta-bottom {
    padding: 40px 15px;
  }

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

  .page-gdpr__section-text,
  .page-gdpr__content-text {
    font-size: 1em;
    text-align: left;
  }

  .page-gdpr__rights-item {
    padding: 12px 15px;
    font-size: 0.95em;
  }

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

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

  .page-gdpr__cta-description {
    font-size: 1.1em;
  }

  /* Ensure all images within .page-gdpr are responsive and do not overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-gdpr__hero-description {
    font-size: 0.9em;
  }

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

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

  .page-gdpr__cta-description {
    font-size: 1em;
  }
}