
        /* Variables CSS */
        :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --text: #333;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        /* Reset et styles de base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: #f9f9f9;
        }

        body.menu-open {
            overflow: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
    /*        list-style: none; */
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--secondary);
            color: white;
            border-radius: 4px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
        }

        .btn-accent {
            background-color: var(--accent);
        }

        .btn-accent:hover {
            background-color: #c0392b;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* ===== HEADER ET NAVIGATION ===== */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        /* Menu Desktop */
        .nav-links {
            display: flex;
            gap: 30px;
			list-style: none;
        }

        .nav-links a {
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        .nav-links a:hover {
            color: var(--secondary);
            background: rgba(52, 152, 219, 0.1);
        }

        .nav-actions {
            display: flex;
            gap: 15px;
        }

        /* Bouton menu mobile */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--primary);
            z-index: 1001;
            padding: 0.5rem;
        }

        /* Overlay mobile */
        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 998;
        }

        /* ===== STYLES RESPONSIVE ===== */
        @media (max-width: 992px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: white;
                flex-direction: column;
                padding: 80px 30px 30px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
                z-index: 999;
                gap: 0;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin-bottom: 20px;
            }

            .nav-links a {
                font-size: 1.1rem;
                padding: 12px 0;
                display: block;
                border-bottom: 1px solid #f0f0f0;
                width: 100%;
            }

            .nav-links a:hover {
                background: #f8f9fa;
                color: var(--secondary);
            }

            .mobile-actions {
                display: flex;
                flex-direction: column;
                gap: 15px;
                margin-top: 30px;
                padding-top: 20px;
                border-top: 1px solid #f0f0f0;
            }

            .mobile-actions .btn {
                text-align: center;
                width: 100%;
            }

            .nav-actions {
                display: none;
            }

            .mobile-overlay.active {
                display: block;
            }
             .contact-hero h1 {
                font-size: 2.5rem;
            }

            .contact-grid {
                margin-top: 0;
                gap: 30px;
            }
       }

        /* ===== HERO SLIDER ===== */
        .hero-slider {
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .slider-container {
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            max-width: 600px;
            color: white;
            padding: 40px;
            background-color: rgba(44, 62, 80, 0.5);
            border-radius: 8px;
        }

        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 25px;
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 900;
        }

        .slider-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .slider-dot.active {
            background-color: var(--accent);
            transform: scale(1.4);
            border-color: white;
        }

        .slider-dot:hover {
            background-color: white;
            transform: scale(1.3);
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
        }

        .slider-arrow {
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background-color: rgba(0, 0, 0, 0.3);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .slider-arrow:hover {
            background-color: rgba(0, 0, 0, 0.6);
        }

        /* ===== SECTIONS ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .course-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .course-card:hover {
            transform: translateY(-5px);
        }

        .course-img {
            height: 200px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
        }

        .course-content {
            padding: 20px;
        }

        .course-category {
            display: inline-block;
            background-color: var(--light);
            color: var(--secondary);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        .course-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .course-info {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            font-size: 0.9rem;
            color: #666;
        }

        .stats {
            background-color: var(--primary);
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-item h3 {
            font-size: 3rem;
            margin-bottom: 10px;
            color: var(--secondary);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: var(--shadow);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ddd;
            margin-right: 15px;
        }

        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .cta {
            background: linear-gradient(to right, var(--secondary), var(--primary));
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        @media (max-width: 768px) {
            .hero-slider {
                height: 400px;
            }
            
            .slide-content {
                margin-left: 5%;
                padding: 20px;
            }
            
            .slide-content h2 {
                font-size: 1.8rem;
            }
            
            .slider-arrows {
                display: none;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            .contact-hero {
                padding: 80px 0;
            }

            .contact-hero h1 {
                font-size: 2rem;
            }

            .contact-info,
            .contact-form {
                padding: 30px;
            }
        }

        @media (max-width: 576px) {
            .hero-slider {
                height: 350px;
            }
            
            .slide-content h2 {
                font-size: 1.5rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            section {
                padding: 60px 0;
            }
            .slider-nav {
                bottom: 15px;
            }
            
            .slider-dot {
                width: 12px;
                height: 12px;
            }
             .contact-hero {
                padding: 60px 0;
            }

            .contact-hero h1 {
                font-size: 1.8rem;
            }

            .contact-info,
            .contact-form {
                padding: 20px;
			}
 
            .info-item {
                flex-direction: column;
                text-align: center;
            }

            .info-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
      }

        /* ===== STYLES POUR LA PAGE CONTACT ===== */
        .contact-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .contact-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: -50px;
            position: relative;
            z-index: 2;
        }

        .contact-info {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .info-icon {
            background: var(--secondary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .info-content h3 {
            color: var(--primary);
            margin-bottom: 5px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: var(--primary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            font-size: 1.1rem;
        }

        .map-container {
            margin-top: 60px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        /* Styles pour les horaires */
        .hours-list {
            margin-top: 10px;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            padding: 5px 0;
            border-bottom: 1px solid #f0f0f0;
        }


        /* Styles spécifiques au questionnaire */
        .questionnaire-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .questionnaire-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .questionnaire-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .questionnaire-container {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 40px;
            margin: -50px auto 60px;
            position: relative;
            max-width: 800px;
        }

        .question {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #f0f0f0;
        }

        .question:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .question-number {
            background: var(--secondary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .question-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .options {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .option-btn {
            flex: 1;
            min-width: 120px;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            background: white;
            color: var(--text);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .option-btn:hover {
            border-color: var(--secondary);
            background: rgba(52, 152, 219, 0.05);
        }

        .option-btn.selected {
            border-color: var(--secondary);
            background: var(--secondary);
            color: white;
        }

        .consequence {
            margin-top: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 6px;
            border-left: 4px solid var(--secondary);
            display: none;
        }

        .consequence.show {
            display: block;
        }

        .consequence p {
            margin: 0;
            color: var(--primary);
            font-weight: 500;
        }

        .navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #f0f0f0;
        }

        .results {
            display: none;
            margin-top: 40px;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid var(--accent);
        }

        .results.show {
            display: block;
        }

        .habilitations-list {
            list-style: none;
            margin-top: 20px;
        }

        .habilitations-list li {
            padding: 10px 15px;
            margin-bottom: 8px;
            background: white;
            border-radius: 6px;
            border-left: 4px solid var(--secondary);
            font-weight: 500;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: #e0e0e0;
            border-radius: 3px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .progress {
            height: 100%;
            background: var(--secondary);
            width: 0%;
            transition: width 0.3s ease;
        }

        .progress-text {
            text-align: center;
            color: var(--text);
            font-weight: 500;
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .questionnaire-container {
                padding: 30px 20px;
                margin: -30px auto 40px;
            }

            .questionnaire-hero {
                padding: 80px 0;
            }

            .questionnaire-hero h1 {
                font-size: 2.5rem;
            }

            .options {
                flex-direction: column;
            }

            .option-btn {
                min-width: auto;
            }

            .navigation {
                flex-direction: column;
                gap: 15px;
            }

            .navigation .btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .questionnaire-hero {
                padding: 60px 0;
            }

            .questionnaire-hero h1 {
                font-size: 2rem;
            }

            .question-text {
                font-size: 1.1rem;
            }
        }

        /* Styles spécifiques aux foormations */

       :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --light: #ecf0f1;
            --dark: #34495e;
            --success: #2ecc71;
            --warning: #f39c12;
            --danger: #e74c3c;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
                
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        
        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .category-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin: 2rem 0;
        }
        
        .filter-btn {
            background: white;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            padding: 8px 16px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--secondary);
            color: white;
        }
        .category-section {
            margin-bottom: 3rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
                
		 .category-header {
            background: var(--primary);
            color: white;
            padding: 1.2rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
			gap: 15px;
			flex-wrap: nowrap; /* Empêche le passage à la ligne */
			min-height: 60px; /* Hauteur minimale pour éviter les sauts */
		}

		.category-title {
			flex: 1; /* Prend tout l'espace disponible */
			margin: 0;
			font-size: 1.5rem;
			font-weight: 600;
			line-height: 1.2;
			word-wrap: break-word; /* Gère les mots longs */
			overflow-wrap: break-word;
		}

		.category-count {
			flex-shrink: 0; /* Empêche la réduction */
			background: var(--secondary);
			color: white;
			padding: 8px 16px;
			border-radius: 20px;
			font-size: 0.9rem;
			font-weight: 600;
			white-space: nowrap; /* Empêche le texte de passer à la ligne */
			min-width: max-content; /* S'adapte au contenu */
		}    
		
        .training-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
            padding: 1.5rem;
        }
        
        .training-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            padding: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid var(--secondary);
            display: flex;
            flex-direction: column;
        }
        
        .training-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .training-image {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 1rem;
        }
        
        .training-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .training-description {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 1rem;
            flex-grow: 1;
        }
        
        .training-link {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s ease;
            text-align: center;
        }
        
        .training-link:hover {
            background: var(--primary);
        }
        
        footer {
            background: var(--dark);
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        
        /* Page détail formation */
        .training-detail {
            max-width: 1000px;
            margin: 2rem auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .training-detail-header {
            background: var(--primary);
            color: white;
            padding: 2rem;
            position: relative;
        }
        
        .training-detail-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .training-detail-title {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: white;
            margin-top: 1rem;
        }
        
        .training-detail-category {
            display: inline-block;
            background: var(--secondary);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            color: white;
        }
        
        .training-detail-content {
            padding: 2rem;
            color: #333;
        }
        
        .training-detail-section {
            margin-bottom: 2rem;
        }
        
        .training-detail-section h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light);
        }
        
        .training-detail-section p, 
        .training-detail-section li {
            color: #555;
            line-height: 1.6;
        }
        
        .training-detail-section ul {
            padding-left: 1.5rem;
        }
        
        .training-detail-section li {
            margin-bottom: 0.5rem;
        }
        
        .back-link {
            display: inline-block;
            color: white;
            text-decoration: none;
            margin-bottom: 1.5rem;
            font-weight: 500;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            transition: background 0.3s ease;
        }
        
        .back-link:hover {
            background: rgba(255, 255, 255, 0.3);
            text-decoration: none;
        }
        
        .program-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .program-item {
            background: var(--light);
            padding: 1rem;
            border-radius: 6px;
            border-left: 4px solid var(--secondary);
        }
		

/* Styles pour les détails du programme */
.program-title {
    font-weight: 600;
    color: var(--primary);
    padding: 12px;
    background: var(--light);
    border-radius: 4px;
    margin-bottom: 5px;
    transition: background-color 0.3s ease;
    border-left: 4px solid var(--secondary);
    cursor: pointer;
}

.program-title:hover {
    background: #d6dbdf;
}

.program-detail {
    padding: 15px;
    background: #f8f9fa;
    border-left: 3px solid var(--warning);
    margin-bottom: 15px;
    border-radius: 0 4px 4px 0;
}

.sub-chapters {
    padding-left: 20px;
    margin-top: 10px;
    list-style-type: disc; /* Force les puces */
}

.sub-chapters li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.4;
    list-style-type: disc; /* Puces pour chaque item */
    display: list-item; /* Important pour afficher les puces */
}


/* Affichage desktop - toujours visible */
@media (min-width: 769px) {
    .program-detail {
        display: block !important; /* Force l'affichage sur desktop */
    }
    
    .program-title {
        cursor: default; /* Pas de curseur pointer sur desktop */
        background: #e8f4f8; /* Couleur différente pour indiquer que c'est statique */
    }
    
    .program-title:hover {
        background: #e8f4f8; /* Pas de changement au survol */
    }
}

@media (min-width: 769px) {
    .program-detail {
        display: block !important; /* Force l'affichage sur desktop */
    }
    
    .program-title {
        cursor: default; /* Pas de curseur pointer sur desktop */
        background: #e8f4f8; /* Couleur différente pour indiquer que c'est statique */
    }
    
    .program-title:hover {
        background: #e8f4f8; /* Pas de changement au survol */
    }
}



/* Affichage mobile - caché par défaut */
@media (min-width: 769px) {
    .program-detail {
        display: block !important; /* Force l'affichage sur desktop */
    }
    
    .program-title {
        cursor: default; /* Pas de curseur pointer sur desktop */
        background: #e8f4f8; /* Couleur différente pour indiquer que c'est statique */
    }
    
    .program-title:hover {
        background: #e8f4f8; /* Pas de changement au survol */
    }
}
        
        @media (max-width: 768px) {
            .training-list {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .training-detail-content {
                padding: 1.5rem;
            }
            
            .training-detail-image {
                height: 200px;
            }
            
            .program-grid {
                grid-template-columns: 1fr;
            }
        }
/* Styles pour les alertes */
.alert-section {
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideIn 0.3s ease-out;
    position: relative;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i:first-child {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive pour les alertes */
@media (max-width: 768px) {
    .alert {
        padding: 0.75rem 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .alert-close {
        align-self: flex-end;
        margin-top: 0.5rem;
        margin-left: 0;
    }
}