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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A2B4C, #2C4270);
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  line-height: 1.2;
}

.page-gdpr__hero-subtitle {
  font-size: 1.5em;
  color: #F0F0F0;
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__content-block {
  background-color: #22375C; /* Slightly lighter blue for content blocks */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__list li {
  background-color: #2C4270; /* Even lighter blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  color: #F0F0F0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-gdpr__list li strong {
  color: #FFD700;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-gdpr__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

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

.page-gdpr__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Deep blue text on button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  text-align: center;
}

.page-gdpr__btn:hover {
  background-color: #E0B500; /* Darker gold on hover */
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }

  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

  .page-gdpr__hero-subtitle {
    font-size: 1.2em;
  }

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

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

  .page-gdpr__content-block {
    padding: 25px;
  }

  .page-gdpr p {
    font-size: 1em;
  }

  .page-gdpr__list li {
    padding: 12px 15px;
    font-size: 0.95em;
  }

  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

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

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

  .page-gdpr__content-block {
    padding: 20px;
  }

  .page-gdpr__list li {
    flex-direction: column;
    align-items: flex-start;
  }

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