.page-gdpr {
  color: #FFFFFF; /* Light text for dark body background */
  background-color: #000000; /* Ensure main content area matches body background */
  padding-top: var(--header-offset, 120px);
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__hero-actions {
  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.3s ease;
  border: 2px solid transparent;
}

.page-gdpr__button--register {
  background-color: #000000; /* Primary button background */
  color: #FFFFFF;
  border-color: #FFFFFF;
}

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

.page-gdpr__button--login {
  background-color: #FCBC45; /* Secondary button background */
  color: #000000;
  border-color: #FCBC45;
}

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

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF; /* White background for content section */
  color: #000000; /* Dark text for white background */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

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

.page-gdpr__card {
  background-color: #F8F8F8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #000000;
}

.page-gdpr__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card image display */
  object-fit: cover;
  display: block;
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin: 20px 20px 10px 20px;
}

.page-gdpr__card-description {
  font-size: 1em;
  line-height: 1.6;
  padding: 0 20px 20px 20px;
}

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

.page-gdpr__list-item {
  background-color: #F8F8F8;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  line-height: 1.7;
  color: #333333;
  border-left: 5px solid #FCBC45;
}

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

.page-gdpr__contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  padding: 40px;
  background-color: #000000; /* Dark background for contact CTA */
  border-radius: 10px;
  text-align: center;
  color: #FFFFFF;
}

.page-gdpr__contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__button--contact:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

@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;
  }
  .page-gdpr__button {
    width: 100%;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__cards-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__content-area {
    padding: 30px 15px;
  }
  .page-gdpr__card-image, .page-gdpr__contact-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and not smaller than 200px due to fixed height on mobile */
  }
  .page-gdpr__content-area img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-gdpr__content-area img {
    max-width: 100%;
    height: auto;
  }
}