.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light text for dark background */
  background-color: #0A2342; /* Main color as background */
  padding: 20px 0;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a5e 100%); /* Darker gradient for hero */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ffffff;
}

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

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-gdpr p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #e0e0e0;
}

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

.page-gdpr__list,
.page-gdpr__numbered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-gdpr__numbered-list {
  list-style-type: decimal;
}

.page-gdpr__list li,
.page-gdpr__numbered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

  .page-gdpr p {
    font-size: 1em;
  }

  .page-gdpr__list li,
  .page-gdpr__numbered-list li {
    font-size: 0.95em;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    float: none;
    margin: 30px auto;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }

  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-gdpr p {
    font-size: 0.95em;
  }

  .page-gdpr__list,
  .page-gdpr__numbered-list {
    margin-left: 20px;
  }

  .page-gdpr__list li,
  .page-gdpr__numbered-list li {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

  .page-gdpr__hero-description {
    font-size: 0.9em;
  }

  .page-gdpr__section-title {
    font-size: 1.5em;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr p {
    font-size: 0.9em;
  }

  .page-gdpr__list,
  .page-gdpr__numbered-list {
    margin-left: 15px;
  }
}