.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2463, #3A5C9B);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

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

.page-gdpr__hero-description a {
  color: #FFD700;
  text-decoration: underline;
}

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

.page-gdpr__section--alt-bg {
  background-color: #eef2f7;
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 30px;
  text-align: center;
}

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

@media (min-width: 768px) {
  .page-gdpr__content-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .page-gdpr__section-title {
    text-align: left;
  }
  .page-gdpr__content-grid--reverse {
    grid-template-areas: 'image text';
  }
  .page-gdpr__content-grid--reverse .page-gdpr__text-content {
    grid-area: text;
  }
  .page-gdpr__content-grid--reverse .page-gdpr__image-wrapper {
    grid-area: image;
  }
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
}

.page-gdpr__text-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-gdpr__text-content ul li {
  margin-bottom: 8px;
}

.page-gdpr__text-content a {
  color: #0A2463;
  font-weight: bold;
}

.page-gdpr__image-wrapper {
  text-align: center;
}

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

.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-gdpr__security-list li {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #0A2463;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__icon {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 10px;
  display: inline-block;
  width: 40px; /* Placeholder for icon */
  height: 40px; /* Placeholder for icon */
  background-color: #0A2463; /* Placeholder for icon background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  font-weight: normal;
}

/* Placeholder icons - in a real scenario, these would be SVG or font icons */
.page-gdpr__icon--lock::before { content: '🔒'; }
.page-gdpr__icon--shield::before { content: '🛡️'; }
.page-gdpr__icon--training::before { content: '🎓'; }
.page-gdpr__icon--audit::before { content: '🔍'; }

.page-gdpr__cta-section {
  background-color: #0A2463;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

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

.page-gdpr__cta-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px;
}

.page-gdpr__cta-description a {
  color: #FFD700;
  text-decoration: underline;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
}

.page-gdpr__btn--primary:hover {
  background-color: #e6c200;
}

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

.page-gdpr__btn--secondary:hover {
  background-color: #e6c200;
  color: #0A2463;
}

@media (max-width: 767px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__security-list li {
    flex: 1 1 100%;
    max-width: none;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
}