<style> /* Empêche le débordement horizontal */ html, body { margin: 0; padding: 0; overflow-x: hidden; } /* Assurez-vous que les conteneurs respectent la largeur de l'écran */ * { box-sizing: border-box; } /* Correction pour les éléments qui pourraient déborder */ img, iframe, .container, .row, .section { max-width: 100%; width: 100%; } </style>