/* Bandeau défilant */
.banner {
  width: 100%;
  height: 80px;
  background-color: #007bff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.banner .marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 12s linear infinite;
  color: #fff;
  font-size: 1.25rem;
  padding-left: 100%;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.vat-info {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #444;
}

.vat-note {
  text-align: center;
  margin: 2rem auto;
  padding: 0.75rem 1rem;
  max-width: 600px;
  background: #e0e0e0;
  border-left: 4px solid #007bff;
  font-style: italic;
  color: #333;
  border-radius: 4px;
}
