        :root {
            --primary: #d0106e;
            --primary-light: #ffd6e9;
            --primary-dark: #a00c56;
            --secondary: #2d3748;
            --text: #222;
            --light-text: #666;
            --lighter-text: #888;
            --border: #eee;
            --bg: #fff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 8px 20px rgba(208, 16, 110, 0.15);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background-color: var(--bg);
            line-height: 1.7;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            padding: 15px 0 10px;
            background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,245,250,1) 100%);
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }

        h1, h2, h3 {
            line-height: 1.3;
            font-weight: 700;
            margin-bottom: 1.2em;
        }

        h1 {
            font-size: clamp(1.2rem, 4vw, 2.2rem);
        }

        h2 {
            font-size: 1.6rem;
            color: var(--secondary);
            position: relative;
            padding-bottom: 10px;
        }

        h2.section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }

        .header-subtitle {
            font-size: 1.1rem;
            color: var(--light-text);
            font-weight: 500;
            margin-top: -15px;
            margin-bottom: 20px;
        }

        /* Article */
        article {
            padding-bottom: 40px;
        }

        .article-section {
            margin-bottom: 50px;
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
        }

        .article-section:hover {
            background-color: rgba(208, 16, 110, 0.03);
        }

        p {
            margin-bottom: 50px;
            font-size: 18px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        p.visible {
            opacity: 1;
            transform: translateY(0);
        }

        strong {
            color: var(--primary);
        }

        /* Listes - Augmentation de la taille et visibilité */
        .checked-list {
            list-style: none;
            margin: 30px 0;
            font-size: 1.1rem;
        }

        .checked-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .checked-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.3rem;
        }

        .warning-list {
            list-style: none;
            margin: 30px 0;
            background: rgba(255, 236, 236, 0.5);
            padding: 20px 25px 20px 45px;
            border-radius: 8px;
            border-left: 4px solid #ff6b6b;
            font-size: 1.1rem;
        }

        .warning-list li {
            position: relative;
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .warning-list li::before {
            content: '!';
            position: absolute;
            left: -30px;
            color: #ff6b6b;
            font-weight: bold;
            font-size: 1.3rem;
        }

        /* Mise en valeur */
        .highlight-box {
            background: var(--primary-light);
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 4px solid var(--primary);
            font-size: 1.1rem;
        }

        /* CTA */
        .footer-cta {
            background: linear-gradient(135deg, rgba(208,16,110,0.05) 0%, rgba(255,255,255,1) 100%);
            padding: 70px 20px;
            text-align: center;
            margin-top: 60px;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .testimonial {
            max-width: 600px;
            margin: 0 auto 40px;
            padding: 25px;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .testimonial blockquote {
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .testimonial cite {
            display: block;
            font-style: normal;
            font-weight: 600;
            color: var(--primary);
            margin-top: 10px;
        }

        .cta-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background-color: var(--primary);
            color: white;
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: var(--shadow-hover);
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 25px rgba(208, 16, 110, 0.25);
            background-color: var(--primary-dark);
        }

        .btn-primary svg {
            transition: transform 0.3s ease;
        }

        .btn-primary:hover svg {
            transform: translateX(5px);
        }

        .cta-note {
            font-size: 0.9rem;
            color: var(--lighter-text);
            margin-top: 10px;
        }

        /* Bouton flottant */
        .cta-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background-color: var(--primary);
            color: white;
            padding: 18px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: var(--shadow-hover);
            transition: var(--transition);
            z-index: 99;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(208, 16, 110, 0.3);
            background-color: var(--primary-dark);
        }

        .cta-button svg {
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(5px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-section {
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(208, 16, 110, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(208, 16, 110, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(208, 16, 110, 0);
            }
        }

        /* Responsive */
        @media (max-width: 1000px) {            
            .article-section {
                padding: 15px 0;
            }
            
            .footer-cta {
                padding: 50px 20px;
            }
            
            .cta-button {
                right: 20px;
                bottom: 20px;
                padding: 15px 25px;
            }
        }