.page-gdpr {
  color: #333333; /* Dark text for light background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  background-color: #FFFFFF;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF; /* Light text for dark overlay on hero image */
  padding: 40px;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for the button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__hero-button:hover {
  background-color: #FFD700; /* Slightly lighter yellow on hover */
  transform: translateY(-3px);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: -60px; /* Overlap with hero section slightly for visual flow */
  position: relative;
  z-index: 3;
}

.page-gdpr__article-heading {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-gdpr__article-subheading {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__article-paragraph {
  margin-bottom: 15px;
  color: #333333;
}

.page-gdpr__article-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  color: #333333;
}

.page-gdpr__list-heading {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 5px;
}

.page-gdpr__list-description {
  font-size: 0.95em;
  color: #555555;
}

.page-gdpr__link {
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-gdpr__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #000000; /* Main brand color for CTA background */
  border-radius: 10px;
  color: #FFFFFF;
}

.page-gdpr__call-to-action-text {
  font-size: 1.8em;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for button */
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__cta-button:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
}

.page-gdpr__related-links {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #EEEEEE;
}

.page-gdpr__related-links-heading {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 20px;
}

.page-gdpr__related-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__article-heading {
    font-size: 2em;
  }
  .page-gdpr__article-subheading {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__content-area {
    padding: 20px 15px;
    margin-top: -40px;
  }
  .page-gdpr__article-heading {
    font-size: 1.8em;
  }
  .page-gdpr__article-subheading {
    font-size: 1.4em;
  }
  .page-gdpr__call-to-action {
    padding: 30px 20px;
  }
  .page-gdpr__call-to-action-text {
    font-size: 1.5em;
  }
  .page-gdpr__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Ensure images do not overflow on mobile */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    min-height: 300px;
  }
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__hero-content {
    padding: 20px;
  }
  .page-gdpr__article-heading {
    font-size: 1.5em;
  }
  .page-gdpr__article-subheading {
    font-size: 1.2em;
  }
  .page-gdpr__call-to-action-text {
    font-size: 1.2em;
  }
  .page-gdpr__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
}