    /* ==================== */
    /* RESET & BASE         */
    /* ==================== */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .site-footer {
        margin-top: 5% !important;
        width: 100%;
    }

    /* ==================== */
    /* TWO-COLUMN LAYOUT    */
    /* ==================== */
    .split-layout {
        display: flex;
        min-height: 100vh;
        width: 100%;
    }

    .left-block {
        flex: 0 0 40%;
        overflow: hidden;
        position: relative;
    }

    .left-block .image-wrapper {
        width: 100%;
        height: 100%;
    }

    .left-block img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .right-block {
        flex: 0 0 60%;
        background: #ffffff;
        overflow-y: auto;
        padding: 60px 40px;
        position: relative;
    }

    /* Scrollbar styling */
    .right-block::-webkit-scrollbar {
        width: 14px;
    }

    .right-block::-webkit-scrollbar-track {
        background-color: #f8f9fa;
        border-radius: 20px;
        margin: 10px 0;
    }

    .right-block::-webkit-scrollbar-thumb {
        background-color: #c1c1c1;
        border-radius: 20px;
        border: 4px solid transparent;
        background-clip: content-box;
        min-height: 40px;
    }

    .right-block::-webkit-scrollbar-thumb:hover {
        background-color: #39b54a;
    }

    .right-block::-webkit-scrollbar-thumb:active {
        background-color: #1a1a3d;
    }

    .custom-container {
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
    }

    /* Progress Bar */
    .progress-container {
        width: 100%;
        height: 12px;
        background-color: #e0e0e0;
        border-radius: 10px;
        margin-bottom: 40px;
        overflow: hidden;
    }

    .progress-bar-fill {
        height: 100%;
        background-color: #8bc34a;
        border-radius: 10px;
    }

    /* Header */
    .header-text h1 {
        font-size: clamp(24px, 5vw, 32px);
        font-weight: 800;
        color: #000;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .header-text p {
        font-size: clamp(14px, 3vw, 16px);
        color: #333;
        margin-bottom: 40px;
    }

    /* Type Filters */
    .type-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
    }

    .type-filter-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        min-width: 120px;
        border-radius: 10px;
        background-color: #f0f0f0;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        flex: 0 1 auto;
    }

    .type-custom-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        object-fit: contain;
    }

    .type-filter-btn:hover {
        background-color: #e8e8e8;
        transform: translateY(-2px);
        border-color: #39b54a;
    }

    .type-filter-btn.active {
        background-color: #39b54a;
        color: #ffffff;
        border-color: #2d8c3a;
    }

    .type-filter-btn.active .type-custom-icon {
        filter: brightness(0) invert(1);
    }

    /* Programs List */
    .programs-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 50px;
    }

    .program-pill-item {
        display: block;
        background-color: #39b54a;
        color: #ffffff;
        text-decoration: none;
        padding: 15px 25px;
        border-radius: 50px;
        font-size: clamp(13px, 3vw, 14px);
        font-weight: 500;
        text-align: center;
        transition: all 0.3s ease;
        border: none;
        word-break: break-word;
        line-height: 1.4;
    }

    .program-pill-item:hover {
        opacity: 0.9;
        transform: scale(1.01);
        color: white;
    }

    .program-pill-item.active {
        background-color: #1a1a3d;
    }

    /* Navigation */
    .bottom-navigation {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .nav-btn {
        display: flex;
        align-items: center;
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 600;
        font-size: clamp(14px, 3vw, 15px);
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 140px;
        justify-content: center;
    }

    .btn-precedent {
        background-color: #a5e896;
        color: #1a1a3d;
    }

    .btn-suivant {
        background-color: #39b54a;
        color: #ffffff;
    }

    .nav-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    .icon-circle {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .black-circle {
        background-color: #1a1a3d;
        margin-right: 10px;
    }

    .white-circle {
        background-color: #ffffff;
        margin-left: 10px;
    }

    .no-results {
        text-align: center;
        padding: 30px;
        color: #666;
        background: #f9f9f9;
        border-radius: 10px;
        font-size: clamp(14px, 3vw, 16px);
    }

    /* Pagination Verticale */
    .pagination-container-vertical {
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .pagination-track {
        position: relative;
        width: 4px;
        height: 200px;
        background-color: #e0e0e0;
        border-radius: 10px;
        overflow: hidden;
    }

    .pagination-thumb {
        position: absolute;
        width: 100%;
        background-color: #39b54a;
        border-radius: 10px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        top: 0;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ==================== */
    /* RESPONSIVE BREAKPOINTS */
    /* ==================== */

    /* Large Desktop */
    @media (min-width: 1400px) {
        .custom-container {
            max-width: 800px;
        }

        .type-filter-btn {
            padding: 14px 25px;
            font-size: 15px;
        }
    }

    /* Tablet Landscape */
    @media (max-width: 1024px) {
        .right-block {
            padding: 40px 30px;
        }

        .type-filters {
            gap: 10px;
        }

        .type-filter-btn {
            min-width: 100px;
            padding: 10px 15px;
        }
    }

    /* Tablet Portrait & Mobile */
    @media (max-width: 768px) {
        .split-layout {
            flex-direction: column;
        }

        .left-block {
            flex: none;
            height: 250px;
        }

        .right-block {
            flex: none;
            padding: 30px 20px;
        }

        .custom-container {
            max-width: 100%;
        }

        .progress-container {
            margin-bottom: 30px;
        }

        .header-text h1 {
            font-size: 26px;
        }

        .header-text p {
            margin-bottom: 30px;
        }

        .type-filters {
            justify-content: center;
            gap: 8px;
        }

        .type-filter-btn {
            min-width: calc(50% - 4px);
            flex: 1 1 auto;
            padding: 10px 12px;
            font-size: 13px;
        }

        .type-custom-icon {
            width: 18px;
            height: 18px;
            margin-right: 8px;
        }

        .program-pill-item {
            padding: 14px 20px;
        }

        .bottom-navigation {
            flex-direction: column;
            gap: 15px;
        }

        .nav-btn {
            width: 100%;
            padding: 14px 20px;
        }

        /* Masquer la pagination verticale sur mobile */
        .pagination-container-vertical {
            display: none;
        }
    }

    /* Small Mobile */
    @media (max-width: 480px) {
        .left-block {
            height: 200px;
        }

        .right-block {
            padding: 25px 15px;
        }

        .progress-container {
            height: 10px;
            margin-bottom: 25px;
        }

        .header-text h1 {
            font-size: 22px;
        }

        .header-text p {
            font-size: 14px;
            margin-bottom: 25px;
        }

        .type-filters {
            flex-direction: column;
            gap: 8px;
        }

        .type-filter-btn {
            width: 100%;
            min-width: 100%;
            justify-content: flex-start;
            padding: 12px 15px;
        }

        .programs-list {
            gap: 10px;
            margin-bottom: 40px;
        }

        .program-pill-item {
            padding: 12px 15px;
            font-size: 13px;
            border-radius: 30px;
        }

        .bottom-navigation {
            margin-top: 30px;
        }

        .nav-btn {
            padding: 12px 15px;
            font-size: 14px;
        }

        .icon-circle {
            width: 22px;
            height: 22px;
        }

        .no-results {
            padding: 20px;
        }
    }

    /* Tr�s petits �crans */
    @media (max-width: 360px) {
        .left-block {
            height: 180px;
        }

        .header-text h1 {
            font-size: 20px;
        }

        .type-filter-btn {
            padding: 10px 12px;
            font-size: 12px;
        }

        .type-custom-icon {
            width: 16px;
            height: 16px;
            margin-right: 6px;
        }

        .program-pill-item {
            padding: 10px 12px;
            font-size: 12px;
        }
    }

    /* Support pour l'orientation paysage sur mobile */
    @media (max-width: 768px) and (orientation: landscape) {
        .left-block {
            height: 150px;
        }

        .right-block {
            padding: 20px;
        }

        .type-filters {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .type-filter-btn {
            width: auto;
            min-width: 120px;
        }
    }

    /* Haute r�solution (�crans Retina) */
    @media (-webkit-min-device-pixel-ratio: 2),
    (min-resolution: 192dpi) {

        .type-filter-btn,
        .program-pill-item,
        .nav-btn {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
    }

    /* Am�liorations pour le mode sombre (si support�) */
    @media (prefers-color-scheme: dark) {
        .right-block {
            background-color: #ffffff;
            /* Garder le fond blanc pour la lisibilit� */
        }
    }

    /* Tr�s petits mobiles (=480px) */
    @media (max-width: 480px) {
        .left-block {
            height: 380px;
            display: none;
            /* Active le mode Flexbox */
            justify-content: center;
            /* Centre horizontalement */
            align-items: center;
            /* Centre verticalement */
            overflow: hidden;
            /* Empêche l'image de dépasser du bloc */
            background-color: #0fb116;
            /* Optionnel : assure la continuité du vert */
        }

        .left-block img {
            width: auto;
            /* Garde ses proportions */
            height: 100%;
            /* Prend toute la hauteur du bloc */
            object-fit: contain;
            /* S'assure que toute la carte est visible sans être coupée */
            display: block;
            margin: auto;
        }

        .right-block {
            padding: 25px 12px;
        }

        .main-title {
            font-size: 24px;
        }

        .sub-description {
            font-size: 14px;
            margin-bottom: 25px;
        }

        .progress-container {
            height: 8px;
            margin-bottom: 25px;
        }

        .slide-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        /* Une seule colonne */
        .program-card {
            padding: 18px 12px;
            flex-direction: row;
            justify-content: flex-start;
            gap: 15px;
        }

        /* Disposition horizontale pour gagner de la place */
        .program-card h3 {
            font-size: 14px;
            text-align: left;
        }

        .card-icon {
            width: 35px;
            height: 35px;
            margin-bottom: 0;
        }

        .bottom-controls {
            flex-direction: column;
            align-items: stretch;
        }

        .btn-action {
            justify-content: center;
        }

        .social-links-minimal {
            gap: 15px;
            font-size: 18px;
        }
    }

    @media (max-width: 480px) {
        .left-block {
            height: 380px;
            display: none;
            /* Active le mode Flexbox */
            justify-content: center;
            /* Centre horizontalement */
            align-items: center;
            /* Centre verticalement */
            overflow: hidden;
            /* Empêche l'image de dépasser du bloc */
            background-color: #38B227;
            /* Optionnel : assure la continuité du vert */
        }

        .left-block img {
            width: auto;
            /* Garde ses proportions */
            height: 100%;
            /* Prend toute la hauteur du bloc */
            object-fit: contain;
            /* S'assure que toute la carte est visible sans être coupée */
            display: block;
        }
    }