.page-gdpr {
  color: #333333; /* Default text color for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero text contrast */
  padding: 0; /* Remove default padding to allow image to span */
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.6; /* Slightly dim image for text readability */
}

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 80%;
  z-index: 10;
}

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

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

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

.page-gdpr__cta-button:hover {
  background-color: #e0a53b;
}

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

.page-gdpr__compliance-overview,
.page-gdpr__your-rights,
.page-gdpr__contact-support {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-gdpr__compliance-overview {
  background-color: #f8f8f8;
}

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

.page-gdpr__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-gdpr__info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__card {
  background-color: #000000; /* Dark card background */
  color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
  flex: 1 1 calc(33% - 40px); /* Three cards per row */
  min-width: 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__card-icon {
  width: 250px; /* Minimum size for content images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-gdpr__card-text {
  font-size: 1em;
  color: #F0F0F0;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.page-gdpr__list-item {
  background-color: #f0f0f0;
  border-left: 5px solid #FCBC45;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333333;
}

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

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

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

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

.page-gdpr__support-button,
.page-gdpr__join-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;
}

.page-gdpr__support-button {
  background-color: #000000; /* Primary color */
  color: #FFFFFF;
  border: 2px solid #000000;
}

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

.page-gdpr__join-button {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__join-button:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__card {
    flex: 1 1 calc(50% - 30px); /* Two cards per row */
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-content {
    max-width: 90%;
  }
  .page-gdpr__main-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__cta-button,
  .page-gdpr__support-button,
  .page-gdpr__join-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__info-cards {
    flex-direction: column;
    align-items: center;
  }
  .page-gdpr__card {
    flex: 1 1 90%; /* Single card per row */
    max-width: 400px;
  }
  .page-gdpr__card-icon {
    width: 200px; /* Ensure minimum size */
  }
  .page-gdpr__rights-list {
    padding: 0 10px;
  }
  .page-gdpr__list-item {
    font-size: 0.95em;
  }
  .page-gdpr__contact-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Mobile content image constraint */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__hero-image {
    width: 100%;
    height: 400px; /* Fixed height for mobile hero to prevent excessive height */
    object-fit: cover;
  }
}