.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1A3A; /* Main dark blue background */
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #0A1A3A 0%, #1A3A6A 100%); /* Dark blue gradient */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #B0B0B0; /* Slightly lighter gray for description */
}

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

.page-gdpr__content-section {
  padding: 60px 0;
}

.page-gdpr__text-block {
  background-color: #1A2B4C; /* Slightly lighter dark blue for content blocks */
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700; /* Gold accent */
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

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

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

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

.page-gdpr__list li strong {
  color: #FFD700; /* Gold for strong text in lists */
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__contact-link {
  color: #FFD700; /* Gold for contact link */
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
  color: #FFF;
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 40px 0;
  background-color: #0A1A3A;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-gdpr__cta-text {
  font-size: 1.5em;
  color: #FFD700; /* Gold for CTA text */
  margin-bottom: 30px;
  font-weight: bold;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Gold button background */
  color: #0A1A3A; /* Dark blue text on gold button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr__button:hover {
  background-color: #E0B800; /* Darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

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

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

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

  .page-gdpr__cta-text {
    font-size: 1.2em;
  }

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

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

  .page-gdpr__hero-section {
    padding: 60px 0 30px;
  }

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

  .page-gdpr__text-block {
    margin-bottom: 30px;
  }

  .page-gdpr__list {
    padding-left: 20px;
  }

  .page-gdpr__button {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
}