.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 content is not hidden by fixed header */
}

.page-gdpr__hero-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

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

.page-gdpr__intro-text {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-gdpr__btn {
  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;
  min-width: 150px;
  text-align: center;
}

.page-gdpr__btn--register {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

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

.page-gdpr__btn--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

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

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

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

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
}

.page-gdpr__principles {
  margin-top: 50px;
}

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

.page-gdpr__principle-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-gdpr__principle-card:hover {
  transform: translateY(-5px);
}

.page-gdpr__principle-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

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

.page-gdpr__card-description {
  font-size: 1em;
  color: #666666;
}

.page-gdpr__user-rights {
  margin-top: 50px;
}

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

.page-gdpr__rights-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444444;
}

.page-gdpr__rights-icon {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  flex-shrink: 0;
  border-radius: 5px;
  min-width: 200px; /* Enforce min image size, will be scaled down by width/height properties */
  min-height: 200px;
}

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

.page-gdpr__link:hover {
  text-decoration: underline;
}

.page-gdpr__contact-info {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__btn--contact {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 20px;
}

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

.page-gdpr__related-links {
  margin-top: 50px;
}

.page-gdpr__links-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
}

.page-gdpr__links-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-gdpr__links-item a {
  color: #000000;
  text-decoration: none;
}

.page-gdpr__links-item a:hover {
  text-decoration: underline;
  color: #FCBC45;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: 2em;
  }

  .page-gdpr__intro-text {
    font-size: 1em;
  }

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

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

  .page-gdpr__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

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

  .page-gdpr__rights-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  /* Ensure content images are responsive and don't overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}