.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #546474; /* Lighter shade for body text for readability on various backgrounds */
  background-color: #f8f9fa;
}

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2239, #2C5364);
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700; /* Auxiliary color for emphasis */
  font-weight: bold;
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #e0e0e0;
}

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

.page-gdpr__section--alt {
  background-color: #f0f2f5;
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__content-block {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-gdpr__heading {
  font-size: 2em;
  color: #0A2239; /* Primary color for headings */
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  display: inline-block;
}

.page-gdpr__image-wrapper {
  margin-bottom: 30px;
  text-align: center;
}

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

.page-gdpr__text {
  margin-bottom: 20px;
  font-size: 1em;
  color: #333;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333;
}

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

.page-gdpr__list strong {
  color: #0A2239;
}

.page-gdpr__link {
  color: #0A2239;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-gdpr__contact-section {
  text-align: center;
  padding-bottom: 80px;
}

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

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

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

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

  .page-gdpr__heading {
    font-size: 1.6em;
  }

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

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

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

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

  .page-gdpr__heading {
    font-size: 1.4em;
  }

  .page-gdpr__list {
    margin-left: 10px;
    list-style-type: none;
    padding-left: 15px;
  }
  .page-gdpr__list li::before {
    content: '• ';
    color: #FFD700;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }

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