.page-gdpr {
  color: #ffffff; /* Light text for dark 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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr__hero-section {
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Main color as background */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__hero-container {
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: #FFFFFF; /* Auxiliary color for titles */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto 30px;
}

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

.page-gdpr__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

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

.page-gdpr__btn--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

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

.page-gdpr__compliance-overview,
.page-gdpr__your-rights,
.page-gdpr__data-processing,
.page-gdpr__contact-dpo {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FCBC45; /* Highlight color for section titles */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-gdpr__section-description {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

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

.page-gdpr__feature-card,
.page-gdpr__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__feature-card:hover,
.page-gdpr__step-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-gdpr__feature-icon,
.page-gdpr__step-icon {
  width: 200px; /* Minimum size for content images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-gdpr__card-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95em;
}

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

.page-gdpr__right-item {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__right-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9em;
}

.page-gdpr__action-center {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-gdpr__btn--secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-gdpr__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #FCBC45;
}

.page-gdpr__btn--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-gdpr__btn--primary:hover {
  background-color: #e0a73d;
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__contact-detail {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.page-gdpr__contact-link {
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-gdpr__btn--support {
  background-color: #000000;
  color: #FCBC45;
  border: 1px solid #FCBC45;
  margin-top: 30px;
}

.page-gdpr__btn--support:hover {
  background-color: #FCBC45;
  color: #000000;
}

/* Responsive adjustments */
@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-title {
    font-size: 2.2em;
  }

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

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

  .page-gdpr__btn {
    width: 100%;
    max-width: 280px;
  }

  .page-gdpr__compliance-overview,
  .page-gdpr__your-rights,
  .page-gdpr__data-processing,
  .page-gdpr__contact-dpo {
    padding: 40px 0;
  }

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

  .page-gdpr__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-gdpr__features-grid,
  .page-gdpr__processing-steps,
  .page-gdpr__rights-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__feature-icon, .page-gdpr__step-icon, .page-gdpr__hero-image {
    max-width: 100%; /* Ensures images are responsive and don't overflow */
    height: auto;
  }

  .page-gdpr__action-center {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__btn--secondary, .page-gdpr__btn--primary {
    max-width: 280px;
    width: 100%;
  }
  .page-gdpr {
    max-width: 100%; /* Prevent horizontal scroll */
    overflow-x: hidden;
  }
}

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

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

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

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

  .page-gdpr__right-title {
    font-size: 1.1em;
  }
}