/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.page-gdpr__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  opacity: 0.3;
  animation: page-gdpr-pulse 10s infinite alternate;
}

@keyframes page-gdpr-pulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0.5; }
}

.page-gdpr__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  opacity: 0.9;
}

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

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

.page-gdpr__heading {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-gdpr__heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #28a745;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-gdpr__section p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #555;
  text-align: justify;
}

.page-gdpr__list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__list li {
  background-color: #ffffff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #007bff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 5px;
  font-size: 1.05em;
  color: #444;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-gdpr__list li strong {
  color: #0056b3; /* Darker blue for contrast */
}

.page-gdpr__highlight {
  color: #007bff;
  font-weight: bold;
}

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

.page-gdpr__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-gdpr__btn--primary {
  background-color: #28a745;
  color: #ffffff;
  border: 2px solid #28a745;
}

.page-gdpr__btn--primary:hover {
  background-color: #218838;
  border-color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__heading {
    font-size: 1.7em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__list li {
    padding: 12px 15px;
    font-size: 1em;
  }
  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__heading {
    font-size: 1.5em;
  }
  .page-gdpr__section p {
    font-size: 0.95em;
  }
}