/* Change la couleur des titres H1 à H6 */
h1, h2, h3, h4, h5, h6 {
  color: #9fc03b; /* Vert SECUPA */
}
a[href^="#"] {
  color: #1f1f1f; /* noir secupa */
  text-decoration: underline; /* Souligné */
}
p {
  line-height: 1.5; /* Valeur plus petite = lignes plus rapprochées */
}
li {
  line-height: 1.4; /* Réduit l’espace vertical entre les lignes */
}
.sticky-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #CF5636;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

.sticky-button:hover {
  background-color: #9fc03b;
}
html {
  scroll-behavior: smooth;
}