.nav-section {
  margin-top: 20px;
  text-align: center;
}

.nav-btn {
  display: inline-block;
  margin: 10px 10px 0 10px;
  padding: 12px 25px;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

.logo-top-left {
  position: fixed;
  top: 1rem;      /* Espace depuis le haut */
  left: 1rem;     /* Espace depuis la gauche */
  z-index: 1001;  /* Au-dessus des autres éléments */
  max-width: 15%; /* Le logo ne dépassera jamais 15% de la largeur de l’écran */
  height: auto;   /* Hauteur proportionnelle */
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.logo-top-left img {
  width: 50%;
  height: auto;  /* Conserve les proportions originales */
  display: block;
}

.logo-top-left:hover {
  transform: scale(1.05);
}

