.page-gdpr {
  color: #333333; /* Dark text for light body background */
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000; /* Dark background for hero */
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  font-weight: 700;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #f0f0f0;
}

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

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

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

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

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

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

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

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #000000;
  font-weight: 700;
}

.page-gdpr__section-text {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #333333;
}

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

.page-gdpr__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  border: 1px solid #e0e0e0;
}

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

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

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

.page-gdpr__feature-item {
  text-align: center;
}

.page-gdpr__feature-icon {
  width: 400px; /* Enforced min 200px */
  height: 300px; /* Enforced min 200px */
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__feature-title {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #000000;
  font-weight: 600;
}

.page-gdpr__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.page-gdpr__rights-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-left: 5px solid #000000;
}

.page-gdpr__rights-item-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #000000;
  font-weight: 600;
}

.page-gdpr__rights-item-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-gdpr__rights-image {
  width: 800px; /* Enforced min 200px */
  height: 600px; /* Enforced min 200px */
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__button--contact {
  background-color: #000000;
  color: #ffffff;
  border: 2px solid #000000;
  margin-top: 30px;
}

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

.page-gdpr__contact-image {
  width: 600px; /* Enforced min 200px */
  height: 400px; /* Enforced min 200px */
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__policy-links {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-gdpr__policy-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f0f0f0;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.page-gdpr__policy-link:hover {
  background-color: #e0e0e0;
}

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

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

  .page-gdpr__features-list,
  .page-gdpr__rights-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }

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

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

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

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

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

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

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

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

  .page-gdpr__features-list,
  .page-gdpr__rights-list {
    grid-template-columns: 1fr;
  }

  .page-gdpr__feature-icon,
  .page-gdpr__rights-image,
  .page-gdpr__contact-image {
    width: 100%;
    height: auto; /* Ensure responsive scaling */
    max-width: 100%; /* Important for mobile overflow prevention */
  }

  /* Ensure content area images are not smaller than 200px */
  .page-gdpr img {
    min-width: 200px; /* Global minimum for content images */
    min-height: 200px; /* Global minimum for content images */
  }
}

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

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

  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}