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

.page-gdpr__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Gold accent for title */
  font-weight: bold;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-gdpr__hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-gdpr__section--alt-background {
  background-color: #f8f8f8;
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__subsection-title {
  font-size: 1.6em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

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

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-gdpr__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__button--primary:hover {
  background-color: #e0a53b;
  color: #000000;
}

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-gdpr__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.page-gdpr__section .page-gdpr__button--secondary {
  color: #000000;
  border-color: #000000;
}

.page-gdpr__section .page-gdpr__button--secondary:hover {
  background-color: #000000;
  color: #FFFFFF;
}

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

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it respects max-width */
  margin: 0 auto;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__link-highlight {
  color: #FCBC45;
  font-weight: bold;
  text-decoration: none;
}

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

.page-gdpr__contact-action {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__final-cta {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-gdpr__final-cta .page-gdpr__section-title,
.page-gdpr__final-cta .page-gdpr__paragraph {
  color: #FFFFFF;
}

.page-gdpr__final-cta .page-gdpr__link-highlight {
  color: #FCBC45;
}

/* 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__subsection-title {
    font-size: 1.4em;
  }

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

  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__button {
    width: 100%;
    max-width: 300px; /* Limit button width on mobile */
    margin: 0 auto;
  }

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

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

  .page-gdpr__list {
    margin-left: 20px;
  }

  /* Ensure content area images are responsive and do not overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }
}

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

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

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

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