.page-gdpr {
  color: #333333; /* Dark text for light body 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: #f5f5f5;
  padding: 80px 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;
  color: #000000;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

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

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__button--register {
  background-color: #FCBC45; /* Login color as background for Register */
  color: #000000; /* Main color as text for Register */
}

.page-gdpr__button--register:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-gdpr__button--login {
  background-color: #000000; /* Main color as background for Login */
  color: #FFFFFF; /* Auxiliary color as text for Login */
}

.page-gdpr__button--login:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

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

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-gdpr__principles-grid, .page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-gdpr__principle-card, .page-gdpr__right-card, .page-gdpr__related-link-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; /* For related-link-card */
  color: inherit; /* For related-link-card */
}

.page-gdpr__principle-card:hover, .page-gdpr__right-card:hover, .page-gdpr__related-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-gdpr__principle-icon, .page-gdpr__right-icon {
  width: 200px; /* Min size 200px */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-gdpr__card-description {
  font-size: 1em;
  color: #555555;
}

.page-gdpr__contact-details {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
}

.page-gdpr__contact-details p {
  margin-bottom: 10px;
}

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

.page-gdpr__contact-link:hover {
  color: #e0a53a;
  text-decoration: underline;
}

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

.page-gdpr__contact-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page-gdpr__related-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

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

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

  .page-gdpr__button {
    width: 100%;
    max-width: 280px;
  }

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

  .page-gdpr__section-intro {
    font-size: 0.95em;
  }

  .page-gdpr__principles-grid, .page-gdpr__rights-grid, .page-gdpr__related-links-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__principle-icon, .page-gdpr__right-icon {
    width: 150px; /* Adjusted for smaller screens, but still > 200px when scaled by max-width:100% */
    height: 112px; /* Maintain aspect ratio */
  }

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