.page-gdpr {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF; /* Explicitly set as per instructions for body background */
}

.page-gdpr__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF; /* Text on hero image should be white */
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45; /* Using login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.page-gdpr__section {
  margin-bottom: 60px;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section--alt-bg {
  background-color: #f9f9f9; /* Light grey for alternating sections */
}

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

.page-gdpr__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-gdpr__grid-item {
  text-align: center;
  padding: 25px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-gdpr__grid-item img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensuring minimum size is met, but responsive */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}

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

.page-gdpr__grid-text {
  font-size: 1em;
  color: #555555;
}

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

.page-gdpr__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background-color: #FFFFFF;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-gdpr__list-item img {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 20px;
}

.page-gdpr__list-content {
  flex-grow: 1;
}

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

.page-gdpr__bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr__bullet-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
  display: flex;
  align-items: center;
}

.page-gdpr__bullet-icon {
  color: #FCBC45;
  font-size: 1.2em;
  margin-right: 10px;
  font-weight: bold;
}

.page-gdpr__contact-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-gdpr__contact-info {
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #000000;
}

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

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

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

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

.page-gdpr__button--primary:hover {
  background-color: #e0a53b;
}

.page-gdpr__button--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__button--secondary:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
}

/* 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 {
    padding: 20px;
    margin-bottom: 40px;
  }

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

  .page-gdpr__list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-gdpr__list-item img {
    margin-right: 0;
    margin-bottom: 15px;
  }

  /* Ensure content images are responsive and do not overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__grid-item img, .page-gdpr__list-item img, .page-gdpr__section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }

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

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

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