.page-gdpr {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #333;
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0; /* Hero image will fill the space */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability, not changing color */
}

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #8B0000; /* Dark Red auxiliary color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-gdpr__cta-button:hover {
  background-color: #FFD700; /* Hover to gold */
  color: #8B0000; /* Text to dark red */
  transform: translateY(-3px);
  border-color: #8B0000;
}

.page-gdpr__cta-button--bottom {
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-gdpr__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7); /* Slightly lighter dark background for content */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-gdpr__article {
  padding: 20px;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold main color */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold main color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__list-item strong {
  color: #FFD700;
}

.page-gdpr__image {
  width: 100%;
  max-width: 800px; /* Ensure images are not too wide */
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact-info {
  margin-top: 30px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1); /* Light transparent background */
  border-radius: 8px;
  border-left: 5px solid #FFD700;
}

.page-gdpr__contact-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-gdpr__contact-link {
  color: #FFD700; /* Gold link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #8B0000; /* Dark red on hover */
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

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

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

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

  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.95em;
  }

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

  .page-gdpr__content-area {
    margin: 20px auto;
    padding: 15px;
  }

  /* Ensure content area images are responsive and do not overflow */
  .page-gdpr__image {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-gdpr__hero-content {
    padding: 20px;
  }

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

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

  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.9em;
  }

  .page-gdpr__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}