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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-gdpr__btn--primary {
  background-color: #fff;
  color: #007bff;
}

.page-gdpr__btn--primary:hover {
  background-color: #e2e6ea;
  color: #0056b3;
  transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-gdpr__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

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

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

.page-gdpr__section--alt-bg {
  background-color: #e9f7ef; /* A lighter shade of green for contrast */
}

.page-gdpr__content-area {
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section--alt-bg .page-gdpr__content-area {
  background-color: #f0f8f4; /* Slightly different background for content area in alt section */
}

.page-gdpr__heading {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 25px;
  border-bottom: 3px solid #28a745;
  padding-bottom: 10px;
  display: inline-block;
}

.page-gdpr__paragraph {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.8;
  color: #495057;
}

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

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

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

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

.page-gdpr__cta-section {
  background: #007bff;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 15px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-content {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}

.page-gdpr__heading--cta {
  color: #fff;
  border-bottom-color: #fff;
  margin-bottom: 20px;
}

.page-gdpr__paragraph--cta {
  color: #e9ecef;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__heading {
    font-size: 1.6em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__content-area {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__heading {
    font-size: 1.4em;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
}