* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        /* NOUVEAUX STYLES D'EN-TÊTE ET DE NAVIGATION */
        header {
            background: linear-gradient(135deg, #dce3ea, #1a93bc);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
        }

        .navbar {
            padding: 1rem 0;
        }

        .navbar-brand img {
            height: 100px;
            border-radius: 5px;
        }
        .logo {
            height: 100px;
            border-radius: 5px;
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: transform 0.3s, color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            transform: translateY(-2px);
            color: #FFD700 !important;
        }


        /* STYLES PERSONNALISÉS DU MENU MOBILE */
        @media (max-width: 991.98px) {
            /* Rend le menu dépliable pleine hauteur/largeur */
            .navbar-collapse {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, #007BFF, #00BFFF); /* Fond comme l'en-tête */
                z-index: 1050; 
                padding-top: 5rem; 
                padding-left: 1rem;
                padding-right: 1rem;
                background-color: transparent !important;
            }

            /* Styles des éléments de liste pour la séparation */
            .navbar-nav .nav-item {
                margin: 0;
                border-bottom: 2px solid rgba(255, 255, 255, 0.4); /* Ligne de séparation */
                padding: 0.5rem 0; 
            }
            
            .navbar-nav .nav-link {
                font-size: 1.25rem; 
                font-weight: 500;
                padding-left: 0; 
            }
            
            /* Style du bouton de fermeture personnalisé (X en haut à droite) */
            .btn-close-mobile {
                position: absolute;
                top: 1.5rem;
                right: 1rem;
                font-size: 2rem;
                background: none;
                border: none;
                color: white;
                z-index: 1060;
                cursor: pointer;
                padding: 0.5rem;
            }

            .btn-close-mobile i {
                color: white;
            }
            
            .navbar-brand {
                position: relative; 
                z-index: 1060; 
            }

            .navbar-brand .logo-container {
                width: 100%;
                text-align: left;
                padding-left: 0;
            }
            
            .nav-list-container {
                width: 100%;
                margin-left: 0 !important;
            }
        }
        /* FIN DES NOUVEAUX STYLES D'EN-TÊTE */

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        h1 {
            font-size: 2.5rem;
            color: #007BFF;
            margin-bottom: 1rem;
            text-align: center;
            opacity: 0;
            animation: fadeIn 1s ease-in forwards;
        }

        .intro-text {
            text-align: center;
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeIn 1s ease-in forwards;
            animation-delay: 0.2s;
        }

        .programs-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .program-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border-top: 5px solid #28A745;
            transition: all 0.4s ease;
            overflow: hidden;
            position: relative;
            height: 250px; /* Hauteur fixe pour l'état par défaut */
        }

        .program-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        .header-content {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .program-icon {
            font-size: 2rem;
            margin-right: 1rem;
        }

        .program-card h2 {
            font-size: 1.5rem;
            color: #007BFF;
            margin: 0;
        }

        .program-card p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 1rem;
        }

        .program-card .full-details {
            display: none;
            padding-top: 1rem;
            border-top: 1px dashed #e0e0e0;
        }

        .program-card .full-details p {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        
        /* Expansion logic */
        .program-card.expanded {
            height: auto; /* Permet à la carte de s'étendre */
            border-color: #007BFF;
        }

        .program-card.expanded .full-details {
            display: block;
        }

        .program-card.expanded p:first-of-type {
            margin-bottom: 0.5rem; /* Réduit l'espace entre le résumé et les détails */
        }


        .expand-btn {
            background: linear-gradient(135deg, #007BFF 0%, #00BFFF 100%);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            font-size: 0.9rem;
            transition: transform 0.3s, box-shadow 0.3s;
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            z-index: 10;
        }
        
        .program-card.expanded .expand-btn {
            position: relative;
            margin-top: 1.5rem;
            bottom: auto;
            right: auto;
            width: 100%;
        }

        .expand-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,123,255,0.3);
        }

        /* CALL TO ACTION */
        .cta-section {
            background: linear-gradient(135deg, #A7C7E7, #B2D8B2);
            text-align: center;
            padding: 4rem 2rem;
            margin-top: 3rem;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #28A745 0%, #007BFF 100%);
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(40,167,69,0.3);
            margin-top: 1rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40,167,69,0.4);
        }

        footer {
            background: linear-gradient(135deg, #343a40 0%, #495057 100%);
            color: white;
            text-align: center;
            padding: 2rem 1rem;
            margin-top: 3rem;
        }

        footer .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        footer p {
            margin: 0.5rem 0;
        }

        footer a {
            color: white;
            margin: 0 1rem;
            text-decoration: none;
            transition: color 0.3s;
        }

        footer a:hover {
            color: #00BFFF;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .programs-list {
                grid-template-columns: 1fr;
            }

            .program-card {
                height: auto;
                min-height: 250px;
                padding-bottom: 5rem;
            }
            
            .program-card.expanded {
                padding-bottom: 2rem;
            }

            .expand-btn {
                width: calc(100% - 3rem);
                left: 1.5rem;
                right: 1.5rem;
            }
            
            h1 {
                font-size: 1.8rem;
            }
        }

/*******************************************************************/
/* NOUVEAUX STYLES DE LA SECTION ARTICLES ARTISANAUX */

.articles-section {
    padding: 3rem 1rem;
    margin-top: 3rem;
    background-color: #e6f3ff; /* Un fond bleu très clair pour la distinguer */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.articles-section h2 {
    font-size: 2rem;
    color: #1a93bc; /* Couleur plus proche du header */
    margin-bottom: 0.5rem;
}

.articles-intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.article-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.article-img {
    width: 100%;
    height: 250px; /* Hauteur fixe pour une grille uniforme */
    object-fit: cover;
    border-bottom: 3px solid #FFD700; /* Touche de couleur dorée */
}

.article-card h3 {
    font-size: 1.3rem;
    color: #007BFF;
    padding: 1rem 1rem 0.5rem;
    margin: 0;
}

.article-description {
    font-size: 0.95rem;
    color: #666;
    padding: 0 1rem 1rem;
    margin: 0;
}

.article-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    margin-top: 0.5rem;
}

.article-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #28A745; /* Vert pour le prix */
}

.buy-btn {
    background: linear-gradient(45deg, #FFD700 0%, #FFA500 100%); /* Orange/Or pour l'achat */
    color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.buy-btn:hover {
    opacity: 0.9;
    color: #333;
}

.all-articles-link {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.all-articles-link a {
    color: #007BFF;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.all-articles-link a:hover {
    color: #0056b3;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-img {
        height: 200px;
    }

    .article-price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
/* FIN NOUVEAUX STYLES DE LA SECTION ARTICLES ARTISANAUX */