
            .banniere h1 {
                color: #23043e;
                font-size: 2em;
                margin: 0;
            }

            .section-formulaires {
                text-align: center;
                padding: 20px 0;
            }

            .section-formulaires h2 {
                color: #23043e;
                font-size: 1.8em;
                margin-bottom: 15px;
            }

            .intro {
                max-width: 800px;
                margin: 0 auto 30px;
                color: #546e7a;
                font-size: 1.1em;
                line-height: 1.6;
            }

            .grille-formulaires {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 30px;
                margin: 30px auto;
                max-width: 1200px;
                justify-content: center;
            }

            .carte-formulaire {
                background: white;
                border-radius: 12px;
                padding: 20px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                text-align: center;
                position: relative;
                overflow: hidden;
                border: 1px solid #e0e0e0;
            }

            .carte-formulaire:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            }

            .carte-icone {
                width: 80px;
                height: 80px;
                margin: 0 auto 15px;
                border-radius: 8px;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #f5f5f5;
            }

            .carte-icone img {
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
            }

            .carte-formulaire h3 {
                color: #23043e;
                margin: 10px 0;
                font-size: 1.3em;
            }

            .carte-formulaire p {
                color: #546e7a;
                margin-bottom: 20px;
                font-size: 0.95em;
                line-height: 1.5;
            }

            .boutons {
                margin-top: 15px;
            }

            .bouton-remplir {
                display: inline-block;
                padding: 10px 25px;
                background-color: #4CAF50;
                color: white;
                text-decoration: none;
                border-radius: 6px;
                font-weight: bold;
                transition: all 0.3s ease;
                border: none;
                cursor: pointer;
            }

            .bouton-remplir:hover {
                background-color: #45a049;
                transform: scale(1.05);
            }

          
            @keyframes pulse {
                0% { transform: scale(1); }
                50% { transform: scale(1.05); }
                100% { transform: scale(1); }
            }

            .miniatures-preview {
                display: flex;
                justify-content: center;
                gap: 5px;
                margin-top: 10px;
                height: 50px;
                overflow: hidden;
            }

            .miniatures-preview img {
                height: 100%;
                width: auto;
                border-radius: 4px;
                opacity: 0.8;
                transition: opacity 0.3s;
            }

            .miniatures-preview img:hover {
                opacity: 1;
            }

            /* Styles pour la section Packs économie */
            .section-packs {
                background-color: #f9f9f9;
                padding: 40px 20px;
                text-align: center;
                margin: 40px 0;
                border-radius: 12px;
            }

            .section-packs h2 {
                color: #23043e;
                font-size: 1.8em;
                margin-bottom: 15px;
            }

            .section-packs p {
                color: #546e7a;
                font-size: 1.1em;
                margin-bottom: 30px;
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
            }

            .grille-packs {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 25px;
                margin: 30px auto;
                max-width: 1200px;
            }

            .carte-pack {
                background: white;
                border-radius: 12px;
                padding: 20px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                text-align: center;
            }

            .carte-pack:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            }

            .carte-pack-image {
                width: 100%;
                height: 180px;
                overflow: hidden;
                border-radius: 8px;
                margin-bottom: 15px;
            }

            .carte-pack-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .carte-pack:hover .carte-pack-image img {
                transform: scale(1.05);
            }

            .carte-pack h3 {
                color: #23043e;
                font-size: 1.4em;
                margin-bottom: 10px;
            }

            .carte-pack p {
                color: #546e7a;
                font-size: 0.95em;
                margin-bottom: 15px;
                line-height: 1.5;
            }

            .carte-pack .prix {
                font-weight: bold;
                color: #4CAF50;
                font-size: 1.3em;
                margin-bottom: 15px;
            }

            .bouton-decouvrir-packs {
                display: inline-block;
                padding: 12px 30px;
                background-color: #8ba4f0;
                color: white;
                text-decoration: none;
                border-radius: 6px;
                font-weight: bold;
                transition: all 0.3s ease;
                margin-top: 30px;
            }

            .bouton-decouvrir-packs:hover {
                background-color: #7a95d5;
                transform: scale(1.05);
            }


.avatar-banniere {
    width: 150px;
    height: auto;
    margin-right: 20px;
    vertical-align: middle;
}
.avatar-interactif {
    width: 120px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s;
    display: block;
    margin: 20px auto;
}
.avatar-banniere, .avatar-interactif {
    box-shadow: 0 0 0 10px white;
    border-radius: 5px; /* optionnel, pour adoucir les bords */
}

.avatar-interactif:hover {
    transform: scale(1.05);
}
@keyframes wave {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(10deg); }
    40% { transform: rotate(0deg); }
    60% { transform: rotate(-10deg); }
    80% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}
.avatar-interactif.anim {
    animation: wave 2s infinite;
}
.banniere {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
