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

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

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

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

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

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

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

.page-gdpr__content-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-gdpr__text-content {
  flex: 1;
  min-width: 300px;
}

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

.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-gdpr__image-wrapper--center {
  margin-top: 40px;
}

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

.page-gdpr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__grid-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFD700;
}

.page-gdpr__grid-title {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-gdpr__grid-item p {
  color: #555;
  font-size: 0.95em;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
}

.page-gdpr__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
  line-height: 1.5;
}

.page-gdpr__list li p {
  margin: 0;
  color: #333;
}

.page-gdpr__list li strong {
  color: #0A2463;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 30px;
  text-align: center;
  border: none;
  cursor: pointer;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

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

  .page-gdpr__content-flex {
    flex-direction: column;
  }

  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

  .page-gdpr__button {
    width: 100%;
    box-sizing: border-box;
  }
}