.infodesign-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 2s ease-out;
    text-align: center;
    height: 45vh; /* Réduction de la hauteur pour diminuer l'espace en bas */
    margin: 0 auto; /* Centrer horizontalement */
}

.infodesign-section .subtitle {
    font-size: 1rem;
    color: #ff0095;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    animation: slideIn 1.5s ease-out forwards;
}

.infodesign-section .quote {
    font-size: 1rem; /* Réduction de la taille de la police */
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 15px; /* Réduction de l'espace en bas */
    animation: zoomIn 1.5s ease-out forwards;
}


.infodesign-section .description {
    font-size: 1rem;
    color: #978a3f;
    margin-bottom: 20px; /* Réduction de l'espace en bas */
    animation: fadeInUp 2s ease-out forwards;
}

.infodesign-section .button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    color: white;
    background: #0078ff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0, 120, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 3s infinite;
}

.infodesign-section .button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 120, 255, 0.7);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(0, 120, 255, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 25px rgba(0, 120, 255, 0.7);
    }
}
