.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 content clears fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 0;
  overflow: hidden;
}

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for hero content */
  margin: 0 auto;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  z-index: 10;
  padding: 20px;
  box-sizing: border-box;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFFFFF;
}

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #000000; /* Register button color */
  color: #FFFFFF; /* Text color for register button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-gdpr__hero-button:hover {
  background-color: #333333;
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EEEEEE;
}

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

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

.page-gdpr__section-text {
  font-size: 1.1em;
  color: #333333;
  text-align: justify;
  margin-bottom: 20px;
}

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

.page-gdpr__commitment-item {
  background-color: #F9F9F9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-gdpr__commitment-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

.page-gdpr__commitment-heading {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-gdpr__rights-item {
  background-color: #F0F0F0;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #000000;
  font-size: 1.1em;
  color: #333333;
}

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

.page-gdpr__link {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #FCBC45;
}

.page-gdpr__contact-cta {
  text-align: center;
  background-color: #F9F9F9;
}

.page-gdpr__cta-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 8px;
  margin-bottom: 30px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Text color for login button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-gdpr__contact-button:hover {
  background-color: #E0A030;
}

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

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

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

  .page-gdpr__section-text {
    font-size: 1em;
  }

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

  .page-gdpr__commitment-image, .page-gdpr__cta-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size on mobile */
    min-height: 200px; /* Ensure min size on mobile */
  }

  /* Critical: Ensure all images within .page-gdpr are responsive and do not cause overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
  }

  .page-gdpr {
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
  }
}