.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light text for dark backgrounds */
  background-color: #1A1A1A; /* Dark background */
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #FFD700, #1A1A1A);
  color: #1A1A1A; /* Dark text on light gold gradient */
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-gdpr__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #1A1A1A; /* Dark text on hero */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-gdpr__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #333; /* Slightly lighter dark text */
}

.page-gdpr__content-section {
  padding: 80px 0;
  background-color: #1A1A1A;
  color: #E0E0E0;
}

.page-gdpr__section--dark {
  background-color: #2A2A2A;
}

.page-gdpr__heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for headings */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__text--small {
  font-size: 0.9em;
  opacity: 0.8;
  margin-top: 30px;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 30px;
  font-size: 1.1em;
}

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

.page-gdpr__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-gdpr__btn--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

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

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

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

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

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  width: 40%;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  width: 40%;
}

.page-gdpr__content-section .page-gdpr__container::after {
  content: '';
  display: table;
  clear: both;
}

.page-gdpr__contact-section {
  text-align: center;
  padding: 60px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__title {
    font-size: 2.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1.2em;
  }
  .page-gdpr__heading {
    font-size: 2em;
  }
  .page-gdpr__text, .page-gdpr__list li {
    font-size: 1em;
  }
  .page-gdpr__image--left, .page-gdpr__image--right {
    float: none;
    margin: 30px auto;
    width: 80%;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 80px 0;
    min-height: 300px;
  }
  .page-gdpr__title {
    font-size: 2.2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__content-section {
    padding: 60px 0;
  }
  .page-gdpr__heading {
    font-size: 1.8em;
  }
  .page-gdpr__list {
    margin-left: 20px;
  }
  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__heading {
    font-size: 1.5em;
  }
  .page-gdpr__text, .page-gdpr__list li {
    font-size: 0.9em;
  }
  .page-gdpr__btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-gdpr__image {
    margin: 20px auto;
    width: 95%;
  }
}