/* Appliquer la couleur de fond uniforme et claire à tout le corps de la page */
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    font-family: 'Poppins', sans-serif !important;
    background-color: #f0f0f0 !important; /* Couleur de fond plus claire */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    position: relative !important;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.9), rgba(0, 0, 0, 0));
    opacity: 0.7;
    animation: move 10s infinite alternate ease-in-out;
}

.circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 15%;
    left: 25%;
    animation-duration: 14s;
}

.circle:nth-child(2) {
    width: 450px;
    height: 450px;
    top: 40%;
    left: 55%;
    animation-duration: 18s;
}

.circle:nth-child(3) {
    width: 600px;
    height: 600px;
    top: 70%;
    left: 10%;
    animation-duration: 20s;
}

@keyframes move {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(80px, -80px) scale(1.3);
    }
    100% {
        transform: translate(-80px, 80px) scale(1);
    }
}

.references-section {
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 30px;
    max-width: 800px;
    margin: 30px auto;
    margin-top: 60px; /* Ajout d'un espace au-dessus de la section */
}

.references-section h2 {
    color: #ff0000;
    text-align: center;
    margin-bottom: 20px;
}

.references-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
}

.references-section ul {
    padding-left: 20px;
    list-style: none;
    font-size: 1em;
}

.references-section ul li {
    margin-bottom: 15px;
}

.references-section ul li strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}
