        :root {
            --primary-color: #1a237e;
            /* Bleu moderne */
            --secondary-color: #1e293b;
            --text-color: #334155;
            --bg-color: #f8fafc;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 900px;
            margin: 50px auto;
            padding: 20px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .title-section {
            text-align: center;
            border-bottom: 2px solid var(--bg-color);
            padding-bottom: 30px;
            margin-bottom: 30px;
        }

        .title-section h1 {
            color: var(--secondary-color);
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .accent {
            color: var(--primary-color);
        }

        .content-section {
            margin-bottom: 40px;
        }

        .content-section h2 {
            color: var(--primary-color);
            border-left: 4px solid var(--primary-color);
            padding-left: 15px;
            margin-bottom: 20px;
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .card {
            background: var(--bg-color);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }

        .card h3 {
            margin-top: 0;
            color: var(--secondary-color);
        }

        .footer-note {
            text-align: center;
            font-style: italic;
            margin-top: 50px;
            color: #64748b;
        }

        @media (max-width: 600px) {
            .grid {
                grid-template-columns: 1fr;
            }
        }