/* Styles CSS */
        body {
            font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        a {
            text-decoration: none;
            color: #0645ad;
        }

        a:hover {
            text-decoration: underline;
            color: #000;
        }

header {
            background-color: #fff;
            padding: 1rem;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ddd;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .header-logo svg {
            width: 48px; /* Ajustez la taille selon vos besoins */
            height: 48px;
            fill: #000000; /* Bleu pour l'icône */
        }

        .header-title {
            font-size: 1.8rem;
            margin: 0;
        }

        .header-subtitle {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
        }

        /* Barre de recherche */
        .search-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f4f4f4;
            padding: 0.5rem;
            border-bottom: 1px solid #ddd;
        }

        .search-bar input[type="text"] {
            width: 80%;
            padding: 0.5rem;
            font-size: 1rem;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .search-bar button {
            margin-left: 0.5rem;
            padding: 0.5rem 1rem;
            font-size: 1rem;
            border: none;
            border-radius: 4px;
            background-color: #007bff;
            color: white;
            cursor: pointer;
        }

        .search-bar button:hover {
            background-color: #0056b3;
        }

        main {
            max-width: 800px;
            margin: 0 auto;
            padding: 1rem;
        }

        h2 {
            margin-top: 1.5rem;
            font-size: 1.4rem;
            border-bottom: 1px solid #ddd;
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        h2 svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        ul {
            margin-left: 1.5rem;
        }

        footer {
            background-color: #fff;
            padding: 1rem;
            text-align: center;
            border-top: 1px solid #ddd;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #666;
        }