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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Adjusted for better contrast with text */
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

.page-gdpr__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e9ecef;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color */
  color: #333; /* Dark text for contrast */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid #ffc107;
}

.page-gdpr__cta-button:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

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

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

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

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

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

.page-gdpr strong {
  color: #0056b3;
}

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

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

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

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

.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: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-gdpr__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #007bff;
}

.page-gdpr__grid-item h3 {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

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

.page-gdpr__contact-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__title {
    font-size: 2.2em;
  }
  .page-gdpr__subtitle {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr p {
    font-size: 1em;
  }
  .page-gdpr__image--right {
    float: none;
    margin: 30px auto;
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__image--right {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .page-gdpr__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-gdpr__list {
    margin-left: 20px;
  }
  .page-gdpr__grid-item {
    padding: 20px;
  }
  .page-gdpr__icon {
    width: 50px;
    height: 50px;
  }
}