 /* Styles généraux pour la section agencesection1 */
 .agencesection1 {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0078ff, #00d4ff);
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 2s ease-out;
}

/* Sous-titre */
.agencesection1 .subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #222122;
    animation: slideInFromTop 1.5s ease-out forwards;
}

/* Citation */
.agencesection1 .quote {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
    animation: fadeInScale 1.5s ease-out forwards;
}

/* Description */
.agencesection1 .description {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #ffffff;
    animation: fadeInUp 2s ease-out forwards;
}

/* Bouton */
.agencesection1 .button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    color: #ffffff;
    background: #bd87be;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(140, 13, 151, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 3s infinite;
}

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

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

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

@keyframes fadeInScale {
    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(255, 111, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 25px rgba(255, 111, 0, 0.7);
    }
}