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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A2E44, #3a5c82);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-gdpr__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-gdpr__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  max-width: 400px;
  opacity: 0.2;
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
}

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #1A2E44;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

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

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

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

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

.page-gdpr__contact-info {
  background-color: #e9ecef;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 30px;
}

.page-gdpr__contact-info p {
  margin: 10px 0;
  font-size: 1.1em;
  color: #1A2E44;
}

.page-gdpr__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
}

.page-gdpr__cta {
  background-color: #1A2E44;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-gdpr__cta .page-gdpr__section-title {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-gdpr__cta p {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
  line-height: 1.8;
  color: #ffffff;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  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__button--primary {
  background-color: #FFD700;
  color: #1A2E44;
  border: 2px solid #FFD700;
}

.page-gdpr__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

  .page-gdpr__subtitle {
    font-size: 1.1em;
  }

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

  .page-gdpr__section p, .page-gdpr__list li {
    font-size: 1em;
  }

  .page-gdpr__hero-image-wrapper {
    width: 50%;
    position: static;
    margin-top: 30px;
    opacity: 0.5;
  }

  .page-gdpr__hero {
    padding: 60px 0 30px 0;
  }

  .page-gdpr__cta p {
    font-size: 1em;
  }

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

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

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

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

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

  .page-gdpr__button {
    display: block;
    margin: 10px auto;
    width: 90%;
  }
}