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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A2E44, #3a5c80);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-gdpr__hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(231, 194, 0, 0.2);
}

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #E7C200; /* Accent color for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #E7C200;
  border-radius: 2px;
}

.page-gdpr__section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #d0d0d0;
  text-align: justify;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 10px;
  color: #d0d0d0;
  margin-bottom: 20px;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-gdpr__list strong {
  color: #E7C200;
}

.page-gdpr__link {
  color: #E7C200;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #ffda47; /* Lighter gold on hover */
  text-decoration: underline;
}

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

.page-gdpr__button {
  display: block;
  width: fit-content;
  margin: 40px auto 20px auto;
  padding: 15px 30px;
  background-color: #E7C200; /* Accent color for button */
  color: #1A2E44; /* Dark text for accent button */
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-gdpr__button:hover {
  background-color: #ffda47; /* Lighter gold on hover */
  transform: translateY(-3px);
}

.page-gdpr__section-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.5em;
  }
  .page-gdpr__subtitle {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__section p, .page-gdpr__list li {
    font-size: 1em;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section p, .page-gdpr__list li {
    font-size: 0.95em;
  }
  .page-gdpr__button {
    width: 90%;
    font-size: 1em;
  }
  .page-gdpr__list {
    margin-left: 10px;
    padding-left: 5px;
  }
}