.page-gdpr {
  color: #f0f0f0; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: var(--background-color, #000000);
}

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

.page-gdpr__hero-container {
  max-width: 900px;
  z-index: 1;
}

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

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

.page-gdpr__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.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.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-gdpr__button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

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

.page-gdpr__button--login:hover {
  background-color: #e5a83a;
  transform: translateY(-2px);
}

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

.page-gdpr__section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px;
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  text-align: left;
}

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

.page-gdpr__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-gdpr__list-item {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 5px solid #FCBC45;
}

.page-gdpr__list-title {
  font-size: 1.6em;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__list-description {
  font-size: 1em;
  line-height: 1.6;
  color: #c0c0c0;
}

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

.page-gdpr__card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #FCBC45;
}

.page-gdpr__card-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #c0c0c0;
}

.page-gdpr__link-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  margin-right: 15px;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-gdpr__link-button:hover {
  background-color: #e5a83a;
  transform: translateY(-2px);
}

.page-gdpr__section--contact {
  text-align: center;
  background-color: #000000;
  border: 1px solid #FCBC45;
}

.page-gdpr__button--contact {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 30px;
}

.page-gdpr__button--contact:hover {
  background-color: #e5a83a;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }

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

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

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

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

  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__button {
    width: 80%;
    max-width: 300px;
  }

  .page-gdpr__section {
    margin: 40px 15px;
    padding: 25px;
  }

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

  .page-gdpr__paragraph {
    font-size: 0.95em;
  }

  .page-gdpr__list-title {
    font-size: 1.4em;
  }

  .page-gdpr__card-title {
    font-size: 1.6em;
  }

  /* Ensure images are responsive and do not overflow */
  .page-gdpr__image, .page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images maintain minimum size */
    min-height: 200px;
  }

  .page-gdpr__link-button {
    margin-right: 0;
    display: block;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

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

  .page-gdpr__list-item, .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__list-title {
    font-size: 1.2em;
  }

  .page-gdpr__card-title {
    font-size: 1.4em;
  }
}