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

.page-gdpr__hero-section {
  background-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: 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.2em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

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

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

.page-gdpr__button--register {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register text color */
  border: 2px solid #000000;
}

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

.page-gdpr__button--login {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

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

.page-gdpr__button--learn-more, .page-gdpr__button--contact, .page-gdpr__button--download {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-gdpr__button--learn-more:hover, .page-gdpr__button--contact:hover, .page-gdpr__button--download:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-3px);
}

.page-gdpr__principles-section, .page-gdpr__rights-section, .page-gdpr__contact-section {
  background-color: #F8F8F8;
  padding: 80px 20px;
  border-bottom: 1px solid #eee;
}

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

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

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

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

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

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

.page-gdpr__card-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

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

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

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.page-gdpr__rights-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-left: 5px solid #000000;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__rights-item strong {
  color: #000000;
}

.page-gdpr__rights-section .page-gdpr__button {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__contact-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  min-width: 200px;
  min-height: 200px;
  display: block;
  margin: 40px auto 30px auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact-section .page-gdpr__button {
  margin-top: 20px;
}

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

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

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

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .page-gdpr__hero-image, .page-gdpr__card-image, .page-gdpr__contact-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size for mobile */
    min-height: 200px; /* Enforce min size for mobile */
  }
  
  .page-gdpr {
    overflow-x: hidden;
  }

  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Ensure content area images are not smaller than 200px */
  .page-gdpr__content-area img {
    min-width: 200px;
    min-height: 200px;
  }
}