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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A2E4C 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

.page-gdpr__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold */
}

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

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__button:hover {
  background-color: #E0B000; /* Darker gold on hover */
  color: #000;
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #0A192F;
}

.page-gdpr__section--alt-bg {
  background-color: #1A2E4C; /* Slightly lighter dark blue for contrast */
}

.page-gdpr__flex-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-gdpr__flex-content--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__image-wrapper {
  flex: 1;
  text-align: center;
}

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

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

.page-gdpr__heading--center {
  text-align: center;
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

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

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

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

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

.page-gdpr__grid-item {
  background-color: #1A2E4C; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-gdpr__sub-heading {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-gdpr__grid-item p {
  color: #B0B0B0;
  font-size: 1em;
}

.page-gdpr__contact {
  background-color: #0A192F;
  padding-bottom: 80px;
}

.page-gdpr__contact .page-gdpr__text-content p {
  font-size: 1.1em;
  color: #E0E0E0;
}

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__flex-content {
    flex-direction: column;
  }
  .page-gdpr__flex-content--reverse {
    flex-direction: column;
  }
  .page-gdpr__heading {
    text-align: center;
  }
  .page-gdpr__text-content, .page-gdpr__image-wrapper {
    width: 100%;
  }
  .page-gdpr__title {
    font-size: 2.5em;
  }
  .page-gdpr__subtitle {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__heading {
    font-size: 1.8em;
  }
  .page-gdpr__text-content p, .page-gdpr__list li {
    font-size: 1em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
}