.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for readability on dark backgrounds */
  background-color: #2C3E50; /* Dark blue background */
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #FFD700 0%, #B39700 100%); /* Gold gradient */
  color: #2C3E50; /* Dark text on gold */
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #2C3E50; /* Dark blue title for contrast */
  font-weight: bold;
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #4A5B70; /* Slightly lighter dark blue for subtitle */
}

.page-gdpr__btn {
  display: inline-block;
  background-color: #2C3E50; /* Dark blue button */
  color: #FFD700; /* Gold text on button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #2C3E50;
}

.page-gdpr__btn:hover {
  background-color: #FFD700;
  color: #2C3E50;
  border-color: #2C3E50;
}

.page-gdpr__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-gdpr__btn--secondary:hover {
  background-color: #FFD700;
  color: #2C3E50;
}

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

.page-gdpr__section--alt-bg {
  background-color: #3C4F66; /* Slightly lighter dark blue for alternating sections */
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  text-align: center;
}

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

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

.page-gdpr__text-content {
  flex: 1;
  min-width: 300px;
}

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

.page-gdpr__text-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-gdpr__text-content ul li {
  margin-bottom: 8px;
}

.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.page-gdpr__rights-list li {
  background-color: #3C4F66;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #FFD700;
  font-weight: bold;
}

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

.page-gdpr__call-to-action {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__call-to-action p {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #E0E0E0;
}

@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2em;
  }

  .page-gdpr__subtitle {
    font-size: 1em;
  }

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

  .page-gdpr__content-flex {
    flex-direction: column;
  }

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

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

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }

  .page-gdpr__title {
    font-size: 1.8em;
  }

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

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