@keyframes sway {
    0%, 100% { 
      transform: translateX(0) rotate(0deg);
    }
    25% { 
      transform: translateX(15px) rotate(5deg);
    }
    75% { 
      transform: translateX(-15px) rotate(-5deg);
    }
  }
  
  .sway-img {
    animation: sway 6s ease-in-out infinite;
    transform-origin: top center; /* Point d'ancrage en haut */
    margin-top: 0 !important;
    position: relative;
    will-change: transform; /* Optimisation des performances */
  }
  
  .d-lg-flex.align-items-start {
    align-items: flex-start !important;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Cache les éventuels débordements */
  }