:root {
    --vert-turquoise: #3A9CA8;
    --vert-lime: #9BC53D;
}

/* Header responsive */
@media (max-width: 576px) {
    header img {
        max-height: 60px !important;
    }
    header h1 {
        font-size: 1.1rem !important;
    }
    .hide-mobile {
        display: none !important;
    }
}

/* Bandeau RGPD */
.bandeau-rgpd {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(30, 30, 30, 0.95);
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}
.bandeau-rgpd-texte {
  flex: 1;
  min-width: 200px;
}
.bandeau-rgpd-boutons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
