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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A237E 0%, #303F9F 100%); /* Gradient with main color */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Accent color for hero text */
  border-bottom: 5px solid #FFD700;
}

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

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

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

.page-gdpr__section--alt-bg {
  background-color: #2c387e; /* Slightly lighter variant of main color */
}

.page-gdpr__heading {
  font-size: 2.2em;
  color: #FFD700; /* Accent color for headings */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-gdpr__text-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-gdpr__text-content li {
  margin-bottom: 8px;
  color: #e0e0e0;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for button background */
  color: #1A237E; /* Main color for button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background-color: #e5c100; /* Darker accent on hover */
  color: #0d123d; /* Darker main color on hover */
}

.page-gdpr__cta-button--center {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

.page-gdpr__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-gdpr__content-grid--reverse {
  grid-template-areas: "image text";
}

.page-gdpr__content-grid--reverse .page-gdpr__text-content {
  grid-area: text;
}

.page-gdpr__content-grid--reverse .page-gdpr__image-container {
  grid-area: image;
}

.page-gdpr__image-container {
  text-align: center;
}

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

.page-gdpr__image--inline {
  display: block;
  margin: 20px auto;
  max-width: 80%;
}

.page-gdpr__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-gdpr__card {
  background-color: #303F9F; /* Darker variant of main color */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-gdpr__card-title {
  color: #FFD700; /* Accent color for card titles */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-gdpr__card p, .page-gdpr__card li {
  color: #c0c0c0;
}

.page-gdpr__card ul {
  list-style-type: circle;
  margin-left: 20px;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: center;
}

.page-gdpr__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-gdpr__contact-link {
  color: #FFD700; /* Accent color for contact links */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

  .page-gdpr__content-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__content-grid--reverse {
    grid-template-areas: unset;
  }

  .page-gdpr__content-grid--reverse .page-gdpr__text-content,
  .page-gdpr__content-grid--reverse .page-gdpr__image-container {
    grid-area: unset;
  }

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

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

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

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

  .page-gdpr__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__card-title {
    font-size: 1.3em;
  }
}