.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for readability on dark background */
  background-color: #0A1931; /* Main brand color */
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1A2F4B 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-gdpr__title {
  font-size: 3.5em;
  color: #FFD700; /* Accent color for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section {
  padding: 60px 0;
}

.page-gdpr__section--alt {
  background-color: #1A2F4B; /* Slightly lighter dark background */
}

.page-gdpr__heading {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section headings */
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.page-gdpr__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #FFD700;
  margin: 15px auto 0;
}

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

.page-gdpr__content-flex--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

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

.page-gdpr__image-wrapper--center {
  flex: none;
  width: 100%;
  margin-top: 30px;
}

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

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 900px;
}

.page-gdpr__list li {
  background-color: #1A2F4B;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  font-size: 1.1em;
  color: #F0F0F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
}

.page-gdpr__list-icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for buttons */
  color: #0A1931; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-gdpr__button:hover {
  background-color: #E0B000; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-gdpr__button--secondary {
  background-color: #0A1931;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__content-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__content-flex--reverse {
    flex-direction: column;
  }
  .page-gdpr__text-content, .page-gdpr__image-wrapper {
    flex: none;
    width: 100%;
  }
  .page-gdpr__image-wrapper--center {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.5em;
  }
  .page-gdpr__heading {
    font-size: 2em;
  }
  .page-gdpr__subtitle, .page-gdpr__text-content p, .page-gdpr__list li {
    font-size: 1em;
  }
  .page-gdpr__hero, .page-gdpr__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__heading {
    font-size: 1.8em;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__list li {
    padding: 15px;
  }
  .page-gdpr__list-icon {
    font-size: 1.2em;
    margin-right: 10px;
  }
}