/* Styles personnalisés pour la police Inter */
body {
    font-family: 'Inter', sans-serif;
}
/* Masquer la scrollbar pour une apparence plus propre, tout en gardant la fonctionnalité de défilement */
body::-webkit-scrollbar {
    display: none; /* Pour WebKit (Chrome, Safari) */
}
body {
    -ms-overflow-style: none;  /* Pour Internet Explorer et Edge */
    scrollbar-width: none;  /* Pour Firefox */
}
/* Animation pour les formes abstraites dans la section Héro */
@keyframes rotate-shape {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.animate-rotate {
    animation: rotate-shape 20s linear infinite;
}