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

.page-gdpr__hero-section {
  background-color: #f8f8f8;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-gdpr__hero-content {
  max-width: 800px;
}

.page-gdpr__hero-title {
  font-size: 3em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

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

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

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

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

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

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-gdpr__container--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__content-block {
  flex: 1;
}

.page-gdpr__image {
  flex: 1;
  max-width: 50%; /* Ensuring image takes up max half width in desktop */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

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

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

.page-gdpr__policy-overview, .page-gdpr__data-rights, .page-gdpr__security-measures, .page-gdpr__contact-section, .page-gdpr__cta-section {
  padding: 60px 0;
}

.page-gdpr__policy-overview {
  background-color: #FFFFFF;
}

.page-gdpr__data-rights {
  background-color: #f8f8f8;
}

.page-gdpr__security-measures {
  background-color: #FFFFFF;
}

.page-gdpr__policy-list, .page-gdpr__rights-list, .page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-gdpr__policy-item, .page-gdpr__rights-item, .page-gdpr__security-item {
  background-color: #f0f0f0;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FCBC45;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333333;
}

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

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

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

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

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

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

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

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

.page-gdpr__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-gdpr__cta-section .page-gdpr__section-title {
  color: #FFFFFF;
}

.page-gdpr__cta-section .page-gdpr__section-text {
  color: #f0f0f0;
}

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

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

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

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

  .page-gdpr__container {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__container--reverse {
    flex-direction: column;
  }

  .page-gdpr__image {
    max-width: 80%;
  }
}

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

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

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

  .page-gdpr__policy-item, .page-gdpr__rights-item, .page-gdpr__security-item {
    font-size: 0.9em;
  }

  .page-gdpr__image {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px;
  }

  /* Enforce min image display size for content images (not header/footer) */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min image size for all content images */
    min-height: 200px;
  }

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