.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e5e5e5; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  font-weight: bold;
}

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

.page-gdpr__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__hero-btn:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #1A202C;
  color: #e5e5e5;
}

.page-gdpr__section--dark {
  background-color: #2c3543; /* Slightly lighter dark background for contrast */
}

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

.page-gdpr__content-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-gdpr__text-content {
  flex: 1;
  font-size: 1.1em;
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
}

.page-gdpr__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image-wrapper--center {
  flex: none;
  margin: 40px auto 0;
  max-width: 600px;
}

.page-gdpr__image--large {
  width: 100%;
  max-width: 500px;
}

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

.page-gdpr__grid-item {
  background-color: #3a475a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__grid-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-gdpr__grid-item p {
  font-size: 1em;
  color: #cccccc;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-top: 20px;
  font-size: 1.1em;
  color: #e5e5e5;
}

.page-gdpr__list li {
  margin-bottom: 10px;
}

.page-gdpr__list li strong {
  color: #FFD700;
}

.page-gdpr__section--cta {
  background-color: #1A202C;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__container--center {
  max-width: 900px;
}

.page-gdpr__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gdpr__cta-description {
  font-size: 1.3em;
  color: #cccccc;
  margin-bottom: 30px;
}

.page-gdpr__cta-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-bottom: 20px;
}

.page-gdpr__cta-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-gdpr__cta-subtext {
  font-size: 1em;
  color: #aaaaaa;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1.3em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__content-flex {
    flex-direction: column;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__cta-title {
    font-size: 2.5em;
  }
  .page-gdpr__cta-description {
    font-size: 1.1em;
  }
  .page-gdpr__cta-btn {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 80px 0;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__grid-item {
    padding: 20px;
  }
  .page-gdpr__grid-item h3 {
    font-size: 1.3em;
  }
  .page-gdpr__list {
    font-size: 1em;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
  .page-gdpr__cta-description {
    font-size: 1em;
  }
  .page-gdpr__cta-btn {
    font-size: 1em;
    padding: 12px 25px;
  }
}