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

.page-gdpr__hero-section {
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.3; /* Subtle background effect */
  filter: grayscale(50%); /* Allowed for non-color changing effects */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 800px;
}

.page-gdpr__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  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__register-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000;
  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__register-button:hover {
  background-color: #e0a73d;
  transform: translateY(-2px);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

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

.page-gdpr__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__feature-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__feature-card:hover {
  transform: translateY(-5px);
}

.page-gdpr__feature-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
  min-width: 200px; /* Enforce minimum size */
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-gdpr__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-gdpr__card-link {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__card-link:hover {
  color: #e0a73d;
  text-decoration: underline;
}

.page-gdpr__cta-button {
  display: block;
  width: fit-content;
  margin: 30px auto;
  background-color: #000000;
  color: #FFFFFF;
  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__cta-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-gdpr__cta-button--secondary {
  background-color: #FCBC45;
  color: #000000;
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #e0a73d;
}

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

.page-gdpr__inline-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: 2em;
  }

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

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

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

  .page-gdpr__paragraph {
    font-size: 1em;
  }

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

  .page-gdpr__feature-image {
    max-width: 100%; /* Ensure images are responsive */
    height: auto;
  }

  .page-gdpr__hero-container {
    padding: 20px 15px;
  }

  /* Mobile content area images must not overflow */
  .page-gdpr__content-area img {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__hero-section {
    padding: 0;
  }
}