.page-gdpr {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Main dark background */
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A1931, #1A3050);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__subtitle {
  font-size: 1.2em;
  color: #C0C0C0; /* Lighter gray for subtitle */
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-gdpr__highlight {
  color: #FFD700;
}

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

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

.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;
  text-align: justify;
}

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

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

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

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

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

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

.page-gdpr__contact-us p {
  text-align: center;
}

.page-gdpr__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-gdpr__cta {
    background-color: #1A3050;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.page-gdpr__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-gdpr__cta-text {
    font-size: 1.2em;
    color: #C0C0C0;
    max-width: 700px;
    margin: 0 auto 40px;
}

.page-gdpr__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button:hover {
    background-color: #FFDF60;
    transform: translateY(-3px);
}

/* Clearfix for floated images */
.page-gdpr__section::after {
    content: "";
    display: table;
    clear: both;
}

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

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 2.5em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__list, .page-gdpr__section p {
    font-size: 0.95em;
  }
  .page-gdpr__cta-title {
      font-size: 2em;
  }
  .page-gdpr__cta-text {
      font-size: 1em;
  }
  .page-gdpr__cta-button {
      padding: 12px 25px;
      font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 40px 0;
  }
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__section {
    padding: 30px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__list, .page-gdpr__section p {
    font-size: 0.9em;
  }
  .page-gdpr__hero-image {
    max-width: 90%;
  }
  .page-gdpr__cta-title {
      font-size: 1.8em;
  }
  .page-gdpr__cta-text {
      font-size: 0.9em;
  }
  .page-gdpr__cta-button {
      padding: 10px 20px;
      font-size: 0.9em;
  }
}