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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a60 100%);
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #E0E0E0;
}

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

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

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

.page-gdpr__heading {
  font-size: 2em;
  color: #1A202C;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__sub-heading {
  font-size: 1.5em;
  color: #1A202C;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-gdpr__text {
  font-size: 1em;
  margin-bottom: 15px;
  color: #333333;
}

.page-gdpr__text .highlight {
  font-weight: bold;
  color: #007bff; /* A neutral highlight color */
}

.page-gdpr__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.page-gdpr__grid-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-gdpr__icon-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

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

.page-gdpr__list strong {
  color: #1A202C;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.2em;
  }

  .page-gdpr__heading {
    font-size: 1.8em;
  }

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

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

  .page-gdpr__heading {
    font-size: 1.5em;
  }

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

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}