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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #F39C12;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #F39C12;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-gdpr__introduction p, .page-gdpr__data-collection p, .page-gdpr__data-usage p, .page-gdpr__user-rights p, .page-gdpr__data-security p, .page-gdpr__contact p, .page-gdpr__cta p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555;
}

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

.page-gdpr__list li {
  background-color: #fff;
  border-left: 5px solid #F39C12;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1em;
  color: #333;
}

.page-gdpr__list-item-title {
  color: #2C3E50;
}

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

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

.page-gdpr__contact-link:hover {
  text-decoration: underline;
}

.page-gdpr__cta {
  text-align: center;
  background-color: #2C3E50;
  color: #ecf0f1;
  padding: 80px 0;
}

.page-gdpr__cta .page-gdpr__section-title {
  color: #F39C12;
}

.page-gdpr__cta .page-gdpr__section-title::after {
  background-color: #ecf0f1;
}

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

.page-gdpr__button--primary {
  background-color: #F39C12;
  color: #2C3E50;
  border: 2px solid #F39C12;
}

.page-gdpr__button--primary:hover {
  background-color: #e08e0b;
  transform: translateY(-2px);
}

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #F39C12;
  border: 2px solid #F39C12;
}

.page-gdpr__button--secondary:hover {
  background-color: #F39C12;
  color: #2C3E50;
  transform: translateY(-2px);
}

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

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

  .page-gdpr__introduction p, .page-gdpr__data-collection p, .page-gdpr__data-usage p, .page-gdpr__user-rights p, .page-gdpr__data-security p, .page-gdpr__contact p, .page-gdpr__cta p {
    font-size: 1em;
  }

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

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

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

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

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

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

  .page-gdpr__list li {
    padding: 10px 15px;
    font-size: 0.9em;
  }

  .page-gdpr__image {
    max-width: 95%;
  }

  .page-gdpr__button {
    display: block;
    margin: 10px auto;
    width: calc(100% - 40px);
  }
}