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

.page-gdpr__hero-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  background-color: #f0f0f0; /* Light background for hero section */
  border-bottom: 5px solid #000000;
}

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

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

.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: #000000; /* Main color for register */
  color: #FFFFFF; /* Text color for register */
}

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

.page-gdpr__button--login {
  background-color: #FCBC45; /* Login specific color */
  color: #000000;
}

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

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

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

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

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

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

.page-gdpr__principle-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-gdpr__principle-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

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

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
}

.page-gdpr__right-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__right-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

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

.page-gdpr__contact-cta {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 30px;
  border-radius: 10px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

.page-gdpr__contact-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__button--contact {
  background-color: #000000;
  color: #FFFFFF;
  margin: 0 10px;
}

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

.page-gdpr__button--secondary {
  background-color: #FCBC45;
  color: #000000;
  margin: 0 10px;
}

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

.page-gdpr__links-list {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__links-list li {
  display: inline-block;
  margin: 0 15px 15px;
}

.page-gdpr__links-list a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease, color 0.3s ease;
}

.page-gdpr__links-list a:hover {
  color: #FCBC45;
  border-bottom-color: #FCBC45;
}

.page-gdpr__promo-cta {
  background-color: #000000; /* Dark background for promo */
  color: #FFFFFF;
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__promo-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-gdpr__promo-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

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

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

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

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

  .page-gdpr__promo-title {
    font-size: 2em;
  }

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

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }

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

  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

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

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

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

  .page-gdpr__content-area {
    padding: 30px 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }

  .page-gdpr__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-gdpr__principle-card {
    padding: 20px;
  }

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

  .page-gdpr__right-item {
    padding: 20px;
  }

  .page-gdpr__right-title {
    font-size: 1.4em;
  }

  .page-gdpr__contact-cta {
    padding: 30px;
  }

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

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

  .page-gdpr__links-list li {
    margin: 0 10px 10px;
  }

  .page-gdpr__promo-cta {
    padding: 40px;
  }

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

  .page-gdpr__promo-description {
    font-size: 1.1em;
  }

  .page-gdpr__content-area img, .page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    display: block; /* Ensure images don't overflow */
  }

  /* Enforce min-width for all content images in mobile media query */
  .page-gdpr img {
    min-width: 200px; /* Ensure all images are at least 200px wide */
    min-height: 200px; /* Ensure all images are at least 200px high */
    width: auto; /* Allow auto width to respect max-width */
    height: auto; /* Allow auto height to respect max-width and aspect ratio */
  }
}

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

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

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

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

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

  .page-gdpr__links-list li {
    display: block;
    margin: 0 auto 10px;
  }
  
  .page-gdpr__button {
    width: 100%;
    box-sizing: border-box;
  }
}