.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 space for fixed header */
}

.page-gdpr__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
}

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

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

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

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

.page-gdpr__button--register:hover {
  background-color: #f0f0f0;
}

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

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

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

.page-gdpr__article {
  margin-bottom: 50px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__article-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-gdpr__article-paragraph {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333333;
}

.page-gdpr__article-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Enforce min-size for content images */
  min-height: 200px; /* Enforce min-size for content images */
}

.page-gdpr__rights-list,
.page-gdpr__compliance-list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-gdpr__rights-item,
.page-gdpr__compliance-item {
  margin-bottom: 10px;
  color: #333333;
}

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

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

.page-gdpr__contact-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-gdpr__button--contact:hover {
  background-color: #333333;
}

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

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

.page-gdpr__cta-section {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 50px;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__button--explore {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  font-size: 1.1em;
}

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

@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;
    gap: 15px;
  }

  .page-gdpr__button {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

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

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

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

  .page-gdpr__content-area, .page-gdpr__hero-section, .page-gdpr__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__article-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-gdpr {
    overflow-x: hidden;
  }
}