
        :root {
            --primary-color: #0093dd;
            --secondary-color: #ffc107;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --border-color: #e9ecef;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #fff;
            overflow-x: hidden;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            padding: 0.8rem 1rem;
        }
        
        .navbar-brand img {
            height: 40px;
        }
        
        .navbar .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar .nav-link:hover {
            color: var(--primary-color);
        }
        
        .user-profile {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: nowrap;
        }
        
        .user-avatar {
            width: 32px;
            height: 32px;
            min-width: 32px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .user-profile span {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 150px;
        }
        
        @media (max-width: 992px) {
            .user-profile {
                margin-top: 1rem;
                justify-content: center;
            }
            
            .user-profile span {
                max-width: 100%;
            }
        }
        
        .hero-section {
            padding: 4rem 0;
        }
        
        .hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.6rem 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #0077b3;
            border-color: #0077b3;
            transform: translateY(-2px);
        }
        
        .btn-outline-primary {
            border-color: var(--primary-color);
            color: var(--primary-color);
            padding: 0.6rem 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Styles pour les cartes de cours ultra-compactes */
        .courses-section {
            padding: 4rem 0;
            
           background-color: #fff; /* Fond blanc */
            
        }
        
        .section-title {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--text-dark);
            text-align: center;
        }
        
        .compact-card {
            background-color: white;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            margin-bottom: 20px;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .compact-card:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
        }
        
        .card-image {
            width: 100%;
            height: 140px;
            position: relative;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .compact-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .card-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }
        
        .status-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }
        
        .status-upcoming {
            background-color: rgba(25, 135, 84, 0.9);
            color: white;
        }

        .status-in-progress {
            background-color: rgba(255, 152, 0, 0.9);
            color: white;
            animation: pulse-badge 2s ease-in-out infinite;
        }

        .status-past {
            background-color: rgba(108, 117, 125, 0.9);
            color: white;
        }

        @keyframes pulse-badge {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }
        
        .card-body {
            padding: 12px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .card-category {
            font-size: 0.8rem;
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 3px;
            text-transform: uppercase;
        }
        
        .class-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-bottom: 5px;
        }
        
        .class-tag {
            display: inline-block;
            background-color: #f1f8ff;
            color: var(--primary-color);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 500;
        }
        
        .card-title {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.3;
            color: var(--text-dark);
            margin-bottom: 6px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .card-description {
            font-size: 0.8rem;
            color: #6c757d;
            margin-bottom: 8px;
            max-height: 60px;
            overflow: hidden;
            line-height: 1.3;
        }
        
        .card-instructor {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .instructor-avatar {
            width: 24px;
            height: 24px;
            min-width: 24px;
            background-color: #eaeaea;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9e9e9e;
            font-size: 0.7rem;
            font-weight: bold;
            margin-right: 8px;
        }
        
        .instructor-name {
            font-size: 0.85rem;
            color: #6c757d;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 210px;
        }
        
        .card-datetime {
            font-size: 0.8rem;
            color: #6c757d;
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .card-datetime i {
            margin-right: 6px;
            color: var(--primary-color);
            width: 14px;
            flex-shrink: 0;
        }
        
        .datetime-text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 8px;
            margin-bottom: 8px;
            font-size: 0.8rem;
            color: #6c757d;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
        }
        
        .meta-item i {
            margin-right: 4px;
            color: var(--primary-color);
            font-size: 0.9rem;
        }
        
        .card-footer {
            display: flex;
            justify-content: space-between;
            padding: 10px 12px;
            background-color: #f9f9f9;
            border-top: 1px solid var(--border-color);
            align-items: center;
            margin-top: auto;
        }
        
        .card-price {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 0.9rem;
        }
        
        .card-places {
            font-size: 0.8rem;
            color: #6c757d;
            display: flex;
            align-items: center;
        }
        
        .card-places i {
            margin-right: 4px;
            color: var(--primary-color);
        }
        
        .places-full {
            color: #dc3545;
        }
        
        .places-available {
            color: #198754;
        }
        
        .past-event {
            opacity: 0.85;
        }
        
        .past-event .card-image:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.2);
        }
        
        .class-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-bottom: 10px;
        }
        
        .class-tag {
            display: inline-block;
            background-color: #f1f8ff;
            color: var(--primary-color);
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 500;
            line-height: 1.4;
            white-space: nowrap;
            max-width: 100px;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .compact-card-separator {
            border-top: 1px solid var(--border-color);
            margin: 10px 0;
            opacity: 0.5;
        }
        
        .card-body-section {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .btn-inscription {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            padding: 8px 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .btn-inscription:hover {
            background-color: #0077b3;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .btn-inscription i {
            font-size: 1rem;
        }
        
        .card-pricing-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .card-pricing-details .tickets-info {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--primary-color);
        }
        
        .card-pricing-details .tickets-info i {
            font-size: 1rem;
        }
        
        .card-pricing-details .places-info {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #6c757d;
        }
        
        .card-pricing-details .places-info i {
            font-size: 1rem;
        }
        
        /* Nouveaux styles pour le layout filtres à gauche / liste à droite */
        .filters-sidebar {
            background-color: #f0f8ff;
            border-radius: 10px;
            padding: 20px;
            margin-right: 20px;
            box-shadow: 0 2px 8px rgba(0, 147, 221, 0.15);
            border: 1px solid rgba(0, 147, 221, 0.1);
            height: 100%;
            position: sticky;
            top: 20px;
        }
        
        .filters-title {
            font-size: 18px;
            font-weight: 700;
            color: #0093dd;
            margin-bottom: 20px;
            text-align: center;
            text-transform: uppercase;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(0, 147, 221, 0.2);
        }
        
        .filter-box {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(0, 147, 221, 0.1);
        }
        
        
        
        
        .filter-label {
            font-weight: 600;
            margin-bottom: 10px;
            color: #495057;
            font-size: 0.9rem;
            text-transform: uppercase;
        }
        
        .filter-select {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            appearance: none;
            background-color: white;
            color: #495057;
            cursor: pointer;
            transition: border-color 0.2s ease-in-out;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230093dd' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 10px;
            padding-right: 30px;
        }
        
        .filter-select:focus {
            border-color: #0093dd;
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 147, 221, 0.2);
        }
        
        .filter-options {
            margin-bottom: 10px;
        }
        
        .radio-option {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .radio-option input[type="radio"],
        .radio-option input[type="checkbox"] {
            margin-right: 10px;
            accent-color: #0093dd;
            cursor: pointer;
        }
        
        .radio-option label {
            cursor: pointer;
            font-size: 0.85rem;
            margin-bottom: 0;
            user-select: none;
        }
        
        .filter-actions {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            margin-top: 20px;
        }
        
        .btn-filter-action {
            flex: 1;
            background-color: #0093dd;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 10px 0;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .btn-filter-action:hover {
            background-color: #0077b3;
            transform: translateY(-2px);
        }
        
        .btn-reset {
            background-color: #6c757d;
        }
        
        .btn-reset:hover {
            background-color: #5a6268;
        }
        
        .filter-search {
            position: relative;
            margin-bottom: 15px;
        }
        
        .filter-search input {
            width: 100%;
            padding: 10px 12px;
            padding-left: 35px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            color: #495057;
            transition: border-color 0.2s ease-in-out;
        }
        
        .filter-search input:focus {
            border-color: #0093dd;
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 147, 221, 0.2);
        }
        
        .filter-search i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #0093dd;
        }
        
        .filter-range {
            margin-top: 15px;
        }
        
        .filter-range-values {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 0.8rem;
            color: #495057;
        }
        
        .course-list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .course-counter {
            font-size: 1.1rem;
            font-weight: 600;
            color: #212529;
        }
        
        .course-counter span {
            color: #0093dd;
            font-weight: 700;
        }
        
        .sort-dropdown {
            position: relative;
        }
        
        .sort-select {
            padding: 8px 35px 8px 15px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            appearance: none;
            background-color: white;
            color: #495057;
            cursor: pointer;
            transition: border-color 0.2s ease-in-out;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230093dd' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 10px;
            font-size: 0.9rem;
        }
        
        .sort-select:focus {
            border-color: #0093dd;
            outline: none;
        }
        
        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        /* Styles pour le bouton flottant et filtres sur mobile */
        .filters-mobile-btn {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .filters-mobile-btn i {
            font-size: 1.5rem;
        }
        
        .filters-mobile-btn:hover, .filters-mobile-btn:focus {
            background-color: #0077b3;
            transform: translateY(-2px);
        }
        
        .filters-mobile-btn.active {
            background-color: #dc3545;
        }
        
        .filters-mobile-backdrop {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 998;
        }
        
        @media (max-width: 991px) {
            .filters-sidebar {
                margin-right: 0;
                margin-bottom: 20px;
                position: fixed;
                top: 0;
                left: 0;
                height: 100%;
                width: 80%;
                max-width: 350px;
                z-index: 999;
                overflow-y: auto;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                border-radius: 0;
            }
            
            .filters-sidebar.show {
                transform: translateX(0);
            }
            
            .filters-mobile-btn {
                display: flex;
            }
            
            .filters-mobile-backdrop.show {
                display: block;
            }
            
            .course-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .course-list-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .sort-dropdown {
                width: 100%;
            }
            
            .sort-select {
                width: 100%;
            }
        }
        
        /* Styles améliorés pour les filtres sur mobile */
        @media (max-width: 991px) {
            .filters-sidebar {
                padding-top: 60px;
            }
            
.filters-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #0093dd;
    font-size: 1.5rem;
    cursor: pointer;
    /* Nous ne définissons pas display: none ici car JavaScript le gérera */
}
        }

        /* Message quand aucun cours n'est disponible */
        .no-courses-message {
            text-align: center;
            padding: 40px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            color: #6c757d;
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .no-courses-message i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: block;
        }
        
        
        /* Styles pour les listes de cases à cocher */
    .filter-checkbox-list {
        max-height: 200px;
        overflow-y: auto;
        margin-bottom: 10px;
        padding-right: 5px;
    }
    
    .checkbox-option {
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }
    
    .checkbox-option input[type="checkbox"] {
        margin-right: 10px;
        accent-color: #0093dd;
        cursor: pointer;
    }
    
    .checkbox-option label {
        cursor: pointer;
        font-size: 0.85rem;
        margin-bottom: 0;
        user-select: none;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    
    .option-count {
        color: #6c757d;
        font-size: 0.8rem;
    }
    
    
    

/* Styles pour les accordéons des filtres */
.filter-label-top {
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.filter-accordion-header {
    background-color: white;
    color: #0093dd;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: normal;
    transition: all 0.3s ease;
    border: 1px solid #ced4da;
    position: relative;
}

.filter-accordion-header:hover {
    border-color: #0093dd;
}

.filter-accordion-title {
    display: flex;
    align-items: center;
    width: calc(100% - 40px); /* Un peu plus d'espace pour l'icône */
    overflow: hidden; /* Contenir le contenu qui pourrait déborder */
    white-space: nowrap; /* Garder sur une ligne */
}



.selected-tag {
    display: inline-block;
    background-color: #ffc107; /* Jaune comme le bouton "Retirer les filtres" */
    color: #212529; /* Texte foncé pour meilleur contraste */
    border-radius: 12px;
    padding: 2px 8px;
    margin-right: 4px;
    margin-bottom: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
}


.filter-accordion-selected {
    color: #333;
    margin-left: 5px;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 1.3;
    /* Conserver les propriétés pour l'ellipsis mais avec max-width adapté */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 10px); /* Permettre d'utiliser presque toute la largeur */
    display: inline-block;
}

.filter-accordion-icon {
    transition: transform 0.3s ease;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.filter-accordion-header.active .filter-accordion-icon {
    transform: translateY(-50%) rotate(180deg);
}

.filter-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-bottom: 10px;
    border: 1px solid #ced4da;
    border-top: none;
    border-radius: 0 0 6px 6px;
    margin-top: -11px;
    padding: 0 15px;
    background-color: white;
}

.filter-accordion-header.active + .filter-accordion-content {
    border-top: none;
}

.filter-accordion-content.show {
    max-height: 250px;
    overflow-y: auto;
    padding: 15px;
}

.filter-accordion-content::-webkit-scrollbar {
    width: 6px;
}


.filter-accordion-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.filter-accordion-content::-webkit-scrollbar-thumb {
    background: #0093dd;
    border-radius: 10px;
}

.filter-accordion-content::-webkit-scrollbar-thumb:hover {
    background: #0077b3;
}

.filter-checkbox-list {
    max-height: unset;
    overflow-y: visible;
}

.selected-filters {
    display: none; /* Cacher l'ancienne zone de tags puisqu'on les affiche maintenant dans l'accordéon */
}

.filter-count-badge {
    background-color: #e0f2ff;
    color: #0093dd;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: bold;
    display: none;
}

.validate-btn {
    background-color: #0b3b7f;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

.validate-btn:hover {
    background-color: #062a5e;
    
    

/* Styles pour le footer */
.footer-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-top {
    padding-top: 100px;
    padding-bottom: 70px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #6c757d;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.btn-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-img {
    display: inline-block;
    padding: 8px 15px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.btn-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-img img {
    max-height: 35px;
}

.copy-right-area {
    padding: 30px 0;
    border-top: 1px solid #e9ecef;
}

.copy-right-content {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.social-link {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-link a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.color-primary {
    color: var(--primary-color);
}

.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.go-top.active {
    opacity: 1;
    visibility: visible;
}

.go-top:hover {
    background-color: #0077b3;
    transform: translateY(-3px);
}

.bg-primary-light {
    background-color: #f0f8ff;
}



.footer-area .shape-1 {
    top: 30%;
    left: 5%;
    opacity: 0.1;
    max-width: 100px;
}

.footer-area .shape-2 {
    bottom: 15%;
    right: 5%;
    opacity: 0.1;
    max-width: 80px;
}

.footer-area .shape-3 {
    top: 15%;
    right: 10%;
    opacity: 0.1;
    max-width: 60px;
}

.footer-area .shape-4 {
    bottom: 30%;
    left: 10%;
    opacity: 0.1;
    max-width: 70px;
}
 

/* Effet d'auréole bleutée pour la section hero */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.8) 0%, rgba(255, 255, 255, 1) 60%, rgba(240, 248, 255, 0.9) 100%);
}

/* Ajouter les formes de blob pour créer l'effet d'auréole */
.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 147, 221, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -250px;
    left: -100px;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 147, 221, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -200px;
    right: 10%;
    z-index: 0;
}

/* Styles personnalisés pour le modal d'inscription au cours */
#inscriptionModal .modal-dialog {
    max-width: 90% !important;
    width: 90% !important;
}

/* Pour les écrans moyens et plus grands */
@media (min-width: 768px) {
    #inscriptionModal .modal-dialog {
        max-width: 1400px !important;
        width: 1400px !important;
    }
}

/* Pour les très grands écrans */
@media (min-width: 1400px) {
    #inscriptionModal .modal-dialog {
        max-width: 1600px !important;
        width: 1600px !important;
    }
}








    