.programme-container {
            padding: 3rem 0;
            background: #FFF3C2;
            min-height: 100vh;
            border-radius: 12px;
        }
        
        @media (max-width: 768px) {
            .programme-container {
                background: transparent;
            }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            /*padding: 0 1.5rem;*/
        }
        
        h1 {
            text-align: center;
            font-size: 2.5rem;
            color: #1a7b8e;
            margin-bottom: 1rem;
        }
        
        .intro {
            text-align: center;
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 3rem;
        }
        
        .alert {
            background-color: #d1ecf1;
            border: 1px solid #bee5eb;
            border-radius: 8px;
            padding: 1.5rem;
            color: #0c5460;
        }
        
        .category-block {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .category-block:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        }
        
        .category-header h2 {
            color: var(--bs-info-text-emphasis);
            font-size: 2rem;
            margin-bottom: 0.5rem;
            border-bottom: 3px solid var(--bs-info-text-emphasis);
            padding-bottom: 0.5rem;
        }
        
        .category-desc {
            color: var(--bs-info-text-emphasis);
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .programme-list {
            list-style: none;
            padding: 0;
        }
        
        .programme-list li {
            padding: 0.5rem;
            margin-bottom: 0rem;
            background: #f8f9fa;
            /*border-left: 4px solid var(--bs-info-text-emphasis);
            border-radius: 6px;*/
            transition: background 0.3s ease;
        }
        
        .programme-list li:hover {
            background: #e8f4f8;
        }
        
        .programme-list h3 {
            color: var(--bs-info-text-emphasis);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        
        .programme-list p {
            color: var(--bs-info-text-emphasis);
            line-height: 1.6;
            margin: 0;
        }
        
        .no-items {
            font-style: italic;
            color: var(--bs-info-text-emphasis);
            text-align: center;
            padding: 2rem;
        }

        /* Styles pour la fonctionnalité collapsible sur mobile */
        .toggle-icon {
            float: right;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            display: none;
        }

        .category-content {
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .category-block {
                padding: 1.5rem;
            }
            
            .category-header {
                cursor: pointer;
                user-select: none;
            }

            .category-header h2 {
                font-size: 1.5rem;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .toggle-icon {
                display: inline-block;
            }

            .category-header.active .toggle-icon {
                transform: rotate(180deg);
            }

            .category-content {
                max-height: 0;
            }

            .category-content.active {
                max-height: 5000px;
            }

            /* Masquer la description dans le header sur mobile pour gagner de l'espace */
            .category-desc {
                margin-bottom: 0;
            }
        }