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

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

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

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #FFFFFF; /* White for description for better contrast */
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
}

.page-gdpr__btn--primary:hover {
  background-color: #E0B700; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 40px;
  text-align: left;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-gdpr__section-title--centered {
  text-align: center;
}

.page-gdpr__centered-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-gdpr__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-gdpr__content-grid > div {
  flex: 1;
}

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

.page-gdpr__text-content strong {
  color: #FFD700;
}

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

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

.page-gdpr__image--full-width {
  width: 100%;
  margin-top: 30px;
}

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

.page-gdpr__feature-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  border: 1px solid #FFD70033; /* Light gold border */
}

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

.page-gdpr__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-gdpr__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-gdpr__feature-item p {
  color: #B0B0B0;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
  color: #E0E0E0;
}

.page-gdpr__list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
}

.page-gdpr__list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-gdpr__right-item {
  background-color: #0A2342;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #FFD700;
}

.page-gdpr__right-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-gdpr__right-item p {
  color: #B0B0B0;
}

.page-gdpr__image--responsive {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 40px auto 0;
}

.page-gdpr__contact-cta {
  background-color: #0A2342;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #FFD700;
}

.page-gdpr__contact-cta p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__content-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__feature-item, .page-gdpr__right-item {
    padding: 20px;
  }
  .page-gdpr__feature-title {
    font-size: 1.5em;
  }
  .page-gdpr__right-title {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__feature-grid, .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__contact-cta {
    padding: 30px;
  }
  .page-gdpr__contact-cta p {
    font-size: 1.1em;
  }
}