.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light text for dark background */
  background-color: #0A2E36; /* Deep blue/green primary color */
  line-height: 1.6;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2E36, #1A4E56);
  padding: 80px 0 40px;
  text-align: center;
}

.page-gdpr__title {
  font-size: 3.5em;
  color: #E0B400; /* Gold accent for titles */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
  font-size: 1.4em;
  color: #BFBFBF;
  margin-bottom: 30px;
}

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

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #E0B400;
  margin-bottom: 30px;
  text-align: center;
}

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

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

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

.page-gdpr__list li strong {
  color: #E0B400;
}

.page-gdpr__image {
  display: block;
  max-width: 90%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

.page-gdpr__cta {
  background-color: #1A4E56;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__cta-title {
  font-size: 2.8em;
  color: #E0B400;
  margin-bottom: 20px;
}

.page-gdpr__cta-text {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #E0B400; /* Gold secondary color */
  color: #0A2E36; /* Dark text for gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__button:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

  .page-gdpr__cta-text {
    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: 1em;
  }

  .page-gdpr__hero-image {
    max-width: 100%;
  }

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

  .page-gdpr__list {
    margin-left: 0;
    list-style-position: outside;
  }

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

  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 1em;
  }
}