.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light text on dark backgrounds */
  background-color: #000c1a; /* Very dark blue for overall background */
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #001f3f 0%, #000c1a 100%);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-gdpr__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-gdpr__brand-highlight {
  color: #ffcc00;
}

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

.page-gdpr__btn--primary {
  background-color: #ffcc00;
  color: #001f3f;
  border: 2px solid #ffcc00;
}

.page-gdpr__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
  background-color: transparent;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.page-gdpr__btn--secondary:hover {
  background-color: #ffcc00;
  color: #001f3f;
  transform: translateY(-2px);
}

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

.page-gdpr__section--dark {
  background-color: #001f3f;
  color: #e0e0e0;
}

.page-gdpr__section--light {
  background-color: #002a4d;
  color: #e0e0e0;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #ffcc00;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

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

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

.page-gdpr__image-block {
  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__brand-text {
  color: #ffcc00;
  font-weight: bold;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  color: #cccccc;
  font-size: 1.1em;
}

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

.page-gdpr__description {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 30px;
  color: #cccccc;
}

.page-gdpr__description--bottom {
  margin-top: 40px;
}

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

.page-gdpr__right-card {
  background-color: #002a4d;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #003d66;
}

.page-gdpr__right-card:hover {
  transform: translateY(-5px);
  background-color: #00335c;
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #ffcc00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card-text {
  font-size: 1em;
  color: #cccccc;
}

.page-gdpr__contact-section {
  text-align: center;
  padding: 80px 0;
  background-color: #001f3f;
}

.page-gdpr__contact-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1.3em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__grid--reversed {
    grid-template-columns: 1fr;
  }
  .page-gdpr__image-block {
    order: -1; /* Image appears above text on mobile for reversed grid */
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1.1em;
  }
  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__text-block p, .page-gdpr__list li, .page-gdpr__description, .page-gdpr__card-text {
    font-size: 1em;
  }
  .page-gdpr__right-card {
    padding: 20px;
  }
  .page-gdpr__card-title {
    font-size: 1.3em;
  }
  .page-gdpr__contact-text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section, .page-gdpr__content-section, .page-gdpr__contact-section {
    padding: 40px 0;
  }
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
}