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

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

.page-gdpr__hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0A2239 0%, #1a3c5d 100%); /* Dark blue gradient */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-gdpr__hero .page-gdpr__container {
  position: relative;
  z-index: 1;
}

.page-gdpr__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for titles */
  font-weight: bold;
}

.page-gdpr__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-gdpr__button--secondary {
  background-color: #0A2239; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: #1a3c5d;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-gdpr__section {
  padding: 60px 0;
  text-align: left;
}

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

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

.page-gdpr__section--alt .page-gdpr__heading {
  color: #FFFFFF;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #E0E0E0;
}

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

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

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

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

.page-gdpr__image--right {
  float: right;
  margin-left: 40px;
  margin-bottom: 20px;
}

.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: #0A2239;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #1a3c5d;
}

.page-gdpr__grid-item .page-gdpr__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__subheading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-gdpr__section--contact {
  text-align: center;
  background-color: #1a3c5d;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__title {
    font-size: 2.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1.3em;
  }
  .page-gdpr__heading {
    font-size: 2em;
  }
  .page-gdpr__image--right {
    float: none;
    margin: 20px auto;
  }
}

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

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-gdpr__heading {
    font-size: 1.5em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
}