        :root {
            --primary: #891e70;
            --secondary: #f2f2f2;
            --accent: #e0b44c;
            --text: #222;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: "Helvetica Neue", Arial, sans-serif;
            color: var(--text);
            background: white;
            line-height: 1.5;
        }

        .flyer {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }

        header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        header h1 {
            font-size: 3rem;
            margin: 0;
            color: var(--primary);
        }

        header h2 {
            font-size: 1.4rem;
            font-weight: normal;
            margin-top: 0.5rem;
        }

        .badge {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.4rem 0.8rem;
            background: var(--accent);
            color: #000;
            font-weight: bold;
            letter-spacing: 0.05em;
        }

        section {
            margin-bottom: 2.5rem;
        }

        section h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .intro {
            font-size: 1.05rem;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.2rem;
        }

        .card {
            background: var(--secondary);
            padding: 1.2rem;
            border-radius: 8px;
        }

        .card h4 {
            margin-top: 0;
            color: var(--primary);
        }

        ul {
            padding-left: 1.2rem;
        }

        footer {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--secondary);
            text-align: center;
        }

        footer p {
            margin: 0.4rem 0;
        }

        .cta {
            margin-top: 1.5rem;
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--primary);
        }

        .hero {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }

        .hero img {
            width: 75%;
            max-width: 400px;
            height: auto;
            display: block;
        }

        @media print {
            body {
                background: white;
            }

            .flyer {
                padding: 1cm;
            }
        }

        .circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #891e70;
            /* couleur du rond */
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 5px;
        }



        .arrow-cta {
            color: #00bf63;
            width: 300px;
            position: relative;
            margin: 60px auto;
            aspect-ratio: 300 / 300; 
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        /* SVG sizing */
        .arrow-cta svg {
            width: 100%;
            height: auto;
        }

        /* Center text inside SVG */
        .arrow-cta span {
            position: absolute;
            font-weight: bold;
            pointer-events: none;
                        width: 100%;

        }

        .arrow-text {
            width: 300px;;
        }
        /* 🖥 Large screens */
        @media (min-width: 1024px) {
            .arrow-cta {
                position: fixed;
                right: 20px;
                top: 20px;
                /*transform: translateY(-10%);*/
                margin: 0;
            }
        }

        /* 📱 Small screens */
        @media (max-width: 1023px) {
            .arrow-cta {
                position: static;
                width: 300px;
            }
        }