/* Styles de base */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
            color: #333;
        }

        /* --- Section Hero (Héros) --- */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/header-bg.jpg') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 40px;
        }

        .hero h1 {
            font-size: 3em;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 1.2em;
            margin-bottom: 30px;
        }

        .hero .cta-button {
            background-color: #007bff;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .hero .cta-button:hover {
            background-color: #0056b3;
        }

        /* --- Section des Cartes --- */
        .card-container {
            display: flex;
            justify-content: center; /* Centrer les cartes */
            flex-wrap: wrap; /* Permettre aux cartes de passer à la ligne */
            gap: 20px; /* Espace entre les cartes */
            padding: 0 20px 40px;
        }

        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 300px; /* Largeur fixe pour l'exemple */
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .card:hover {
            transform: translateY(-5px); /* Petit effet de soulèvement au survol */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .card .icon {
            font-size: 2.5em;
            color: #007bff;
            margin-bottom: 15px;
        }

        .card h3 {
            margin-top: 0;
            color: #333;
        }

        .card p {
            font-size: 0.9em;
            color: #666;
        }

        /* Pour la démonstration jQuery */
        .card-footer {
            margin-top: 15px;
            font-size: 0.8em;
            color: gray;
            /* Le texte "Cliquez pour plus de détails" sera affiché ici */
        }
        @media (max-width: 768px) {
            .hero {
                background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/header-bg.jpg') center no-repeat;
                background-size: auto 100%;
            }
        }