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

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

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

.page-gdpr__title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
  font-size: 1.4em;
  color: #B0C4DE; /* Light steel blue for subtitles */
  margin-bottom: 40px;
}

.page-gdpr__hero-image {
  max-width: 600px;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-gdpr__section ul {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

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

.page-gdpr__link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.page-gdpr__image {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin: 30px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-gdpr__section:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__image {
    max-width: 300px;
    margin: 20px auto;
    float: none;
  }
  .page-gdpr__image--left, .page-gdpr__image--right {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 2.2em;
  }
  .page-gdpr__subtitle {
    font-size: 1.2em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section p, .page-gdpr__section li {
    font-size: 1em;
  }
  .page-gdpr__section ul {
    margin-left: 20px;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-gdpr__hero-image {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 40px 0;
  }
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 30px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__section p, .page-gdpr__section li {
    font-size: 0.95em;
  }
  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 1em;
  }
}