.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 {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero text contrast */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

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

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

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

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

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

.page-gdpr__btn {
  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;
  font-size: 1.1em;
}

.page-gdpr__btn--register {
  background-color: #FCBC45; /* Login color for Register */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__btn--register:hover {
  background-color: #e0a53b;
  color: #000000;
}

.page-gdpr__btn--learn-more {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-gdpr__btn--learn-more:hover {
  background-color: #FFFFFF;
  color: #000000;
}

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

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

.page-gdpr__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-gdpr__principle-card, .page-gdpr__right-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

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

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

.page-gdpr__data-protection-section {
  background-color: #f0f0f0;
  padding: 60px 0;
}

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

.page-gdpr__protection-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-gdpr__protection-image, .page-gdpr__rights-image, .page-gdpr__process-image {
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  max-width: 400px; /* Constrain image width for better layout */
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__item-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-gdpr__item-text {
  font-size: 1em;
  color: #555555;
}

.page-gdpr__link {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__link:hover {
  color: #FCBC45;
}

.page-gdpr__compliance-process-section {
  padding: 60px 0;
}

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

.page-gdpr__process-step {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-gdpr__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-gdpr__step-description {
  font-size: 1em;
  color: #555555;
}

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

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

.page-gdpr__cta-section .page-gdpr__section-text {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-gdpr__btn--register-large {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-gdpr__btn--register-large:hover {
  background-color: #e0a53b;
  color: #000000;
}

.page-gdpr__btn--support {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  padding: 18px 35px;
  font-size: 1.2em;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__protection-details, .page-gdpr__principles-grid, .page-gdpr__rights-grid, .page-gdpr__process-steps {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-actions, .page-gdpr__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__btn, .page-gdpr__btn--register-large, .page-gdpr__btn--support {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-gdpr__content-area {
    padding: 30px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-text {
    font-size: 0.95em;
  }
  .page-gdpr__protection-image, .page-gdpr__rights-image, .page-gdpr__process-image {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__protection-details img, .page-gdpr__rights-grid img, .page-gdpr__process-steps img, .page-gdpr__content-area img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-section {
    padding: 40px 10px;
  }
  .page-gdpr__content-area {
    padding: 20px 10px;
  }
  .page-gdpr__principles-grid, .page-gdpr__rights-grid, .page-gdpr__process-steps {
    grid-template-columns: 1fr;
  }
}