  /* ===== POLICE UNIFORMISÉE COMME ACCUEIL ===== */
    :root {
        --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .insfs-modern-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 32px 24px;
        font-family: var(--font-primary);
        background: linear-gradient(135deg, #fafcff 0%, #ffffff 100%);
    }

    /* Section Header */
    .section-header-modern {
        text-align: center;
        margin-bottom: 40px;
        font-family: var(--font-primary);
    }

    .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #006B52, #00A74D);
        color: white;
        font-family: var(--font-primary);
        font-size: 0.7rem;
        font-weight: 700;
        padding: 5px 14px;
        border-radius: 30px;
        letter-spacing: 0.5px;
        margin-bottom: 16px;
        box-shadow: 0 2px 8px rgba(0, 107, 82, 0.2);
    }

    .section-header-modern h2 {
        font-family: var(--font-primary);
        font-size: 2rem;
        font-weight: 700;
        color: #1a2c3e;
        margin-bottom: 12px;
        position: relative;
        display: inline-block;
    }

    .section-header-modern h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #006B52, #00A74D);
        border-radius: 3px;
    }

    .section-header-modern p {
        font-family: var(--font-primary);
        color: #5a6e7c;
        font-size: 1rem;
    }

    /* Convocation Section */
    .convocation-section {
        background: linear-gradient(135deg, #1a472a 0%, #006B52 100%);
        border-radius: 24px;
        margin-bottom: 32px;
        overflow: hidden;
        position: relative;
    }

    .convocation-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-15px) scale(1.05); }
    }

    .convocation-wrapper {
        padding: 40px 48px;
        color: white;
        text-align: center;
        position: relative;
        z-index: 1;
        font-family: var(--font-primary);
    }

    .convocation-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        padding: 4px 16px;
        border-radius: 30px;
        font-family: var(--font-primary);
        font-size: 0.7rem;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .convocation-wrapper h3 {
        font-family: var(--font-primary);
        font-size: 1.8rem;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .convocation-wrapper p {
        font-family: var(--font-primary);
        opacity: 0.9;
        margin-bottom: 20px;
    }

    .convocation-list-horizontal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-bottom: 28px;
    }

    .convocation-pill {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        padding: 6px 20px;
        border-radius: 40px;
        font-family: var(--font-primary);
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.2s;
    }

    .convocation-pill:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .btn-print-convocation {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: white;
        color: #006B52;
        padding: 12px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-family: var(--font-primary);
        font-weight: 700;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .btn-print-convocation:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    /* Communique */
    .communique-wrapper {
        background: linear-gradient(135deg, #fff8e7, #fff3d6);
        border-left: 4px solid #d4a017;
        border-radius: 20px;
        padding: 24px 32px;
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        margin-bottom: 48px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        font-family: var(--font-primary);
    }

    .communique-icon {
        font-size: 2.5rem;
        font-family: var(--font-primary);
    }

    .communique-text {
        flex: 1;
        font-family: var(--font-primary);
    }

    .communique-tag {
        background: linear-gradient(135deg, #d4a017, #b8860b);
        color: white;
        padding: 2px 12px;
        border-radius: 20px;
        font-family: var(--font-primary);
        font-size: 0.7rem;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 12px;
    }

    .communique-text p {
        font-family: var(--font-primary);
        margin-bottom: 12px;
        color: #5a4a1a;
        line-height: 1.5;
    }

    .communique-text .small {
        font-family: var(--font-primary);
        font-size: 0.85rem;
        opacity: 0.8;
    }

    .communique-link {
        color: #d4a017;
        text-decoration: none;
        font-family: var(--font-primary);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
        transition: all 0.2s;
    }

    .communique-link:hover {
        color: #b8860b;
        gap: 12px;
    }

    /* Dispositions Cards */
    .dispositions-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-bottom: 64px;
    }

    .dispo-card {
        background: white;
        border-radius: 20px;
        padding: 28px 20px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        font-family: var(--font-primary);
    }

    .dispo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #006B52, #00A74D);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .dispo-card:hover::before {
        transform: scaleX(1);
    }

    .dispo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .dispo-icon {
        font-size: 2.2rem;
        margin-bottom: 16px;
        font-family: var(--font-primary);
    }

    .dispo-card h4 {
        font-family: var(--font-primary);
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #1a2c3e;
        font-weight: 700;
    }

    .dispo-card p {
        font-family: var(--font-primary);
        font-size: 0.85rem;
        color: #5a6e7c;
        line-height: 1.5;
    }

    .currency-badge {
        display: inline-block;
        background: linear-gradient(135deg, #e8f5e9, #dcfce7);
        color: #006B52;
        font-family: var(--font-primary);
        font-size: 0.7rem;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
        margin-top: 12px;
    }

    /* Concours Grid */
    .concours-grid-2cols {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 24px;
    }

    .concours-card-modern {
        background: white;
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        transition: all 0.3s;
        font-family: var(--font-primary);
    }

    .concours-card-modern:hover {
        border-color: #006B52;
        transform: translateY(-4px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .card-header-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 12px;
    }

    .concours-code {
        background: linear-gradient(135deg, #006B52, #00A74D);
        color: white;
        font-family: var(--font-primary);
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 12px;
        font-size: 0.8rem;
    }

    .concours-duration {
        background: #e8f0fe;
        color: #2c5282;
        font-family: var(--font-primary);
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 600;
    }

    .concours-card-modern h4 {
        font-family: var(--font-primary);
        font-size: 1.2rem;
        margin-bottom: 16px;
        color: #1a2c3e;
        font-weight: 700;
    }

    .concours-conditions-list {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
        font-family: var(--font-primary);
    }

    .concours-conditions-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-primary);
        font-size: 0.85rem;
        color: #2d3e4e;
        margin-bottom: 10px;
    }

    .check-bullet {
        width: 18px;
        height: 18px;
        background: linear-gradient(135deg, #006B52, #00A74D);
        border-radius: 20px;
        display: inline-block;
        position: relative;
        box-shadow: 0 2px 5px rgba(0, 107, 82, 0.3);
    }

    .check-bullet::after {
        content: "✓";
        color: white;
        font-family: var(--font-primary);
        font-size: 11px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .card-footer-links {
        display: flex;
        gap: 16px;
        padding-top: 16px;
        border-top: 1px solid #e2e8f0;
        font-family: var(--font-primary);
    }

    .link-communique {
        color: #006B52;
        text-decoration: none;
        font-family: var(--font-primary);
        font-size: 0.8rem;
        font-weight: 600;
        transition: all 0.2s;
    }

    .link-communique:hover {
        color: #00A74D;
        transform: translateX(3px);
    }

    .link-procedure {
        color: #d4a017;
        text-decoration: none;
        font-family: var(--font-primary);
        font-size: 0.8rem;
        font-weight: 600;
        transition: all 0.2s;
    }

    .link-procedure:hover {
        color: #b8860b;
        transform: translateX(3px);
    }

    .notice-warning {
        background: linear-gradient(135deg, #fef3e8, #fef9e6);
        padding: 14px 24px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-top: 8px;
        border-left: 4px solid #f59e0b;
        font-family: var(--font-primary);
    }

    .notice-icon {
        font-size: 1.2rem;
        font-family: var(--font-primary);
    }

    /* Dossier */
    .dossier-columns {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
        background: linear-gradient(135deg, #f8fafc, #ffffff);
        border-radius: 24px;
        padding: 40px;
        margin-bottom: 64px;
        border: 1px solid #e2e8f0;
        font-family: var(--font-primary);
    }

    .dossier-block .block-icon {
        font-size: 2rem;
        margin-bottom: 20px;
        font-family: var(--font-primary);
    }

    .dossier-block ul {
        list-style: none;
        padding: 0;
        font-family: var(--font-primary);
    }

    .dossier-block li {
        padding: 12px 0;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.2s;
        font-family: var(--font-primary);
    }

    .dossier-block li:hover {
        padding-left: 8px;
        background: rgba(0, 107, 82, 0.05);
    }

    .dossier-block li::before {
        content: "✓";
        color: #006B52;
        font-family: var(--font-primary);
        font-weight: 700;
        font-size: 1rem;
    }

    /* Tableau */
    .fees-table-container {
        overflow-x: auto;
        margin-bottom: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .fees-table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        border-radius: 20px;
        overflow: hidden;
        font-family: var(--font-primary);
    }

    .fees-table th {
        background: linear-gradient(135deg, #1a2c3e, #2d4a6e);
        color: white;
        padding: 16px 20px;
        text-align: left;
        font-family: var(--font-primary);
        font-weight: 600;
    }

    .fees-table td {
        padding: 14px 20px;
        border-bottom: 1px solid #e2e8f0;
        color: #2d3e4e;
        font-family: var(--font-primary);
    }

    .fees-table tr:hover td {
        background: #f8fafc;
    }

    .concours-name {
        font-family: var(--font-primary);
        font-weight: 600;
    }

    .medical-total {
        background: linear-gradient(135deg, #e8f5e9, #dcfce7);
        font-family: var(--font-primary);
        font-weight: 700;
        color: #006B52;
    }

    .total-fees {
        font-family: var(--font-primary);
        font-weight: 800;
        color: #1a2c3e;
        background: #f8fafc;
    }

    .fees-note {
        background: linear-gradient(135deg, #e8f0fe, #eff6ff);
        padding: 18px 24px;
        border-radius: 16px;
        display: flex;
        gap: 14px;
        font-family: var(--font-primary);
        font-size: 0.85rem;
        margin-bottom: 64px;
        border-left: 4px solid #3b82f6;
    }

    /* Timeline */
    .calendar-timeline-modern {
        background: white;
        border-radius: 24px;
        padding: 32px;
        margin-bottom: 28px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        font-family: var(--font-primary);
    }

    .timeline-item-modern {
        display: flex;
        margin-bottom: 28px;
        position: relative;
        font-family: var(--font-primary);
    }

    .timeline-item-modern:last-child {
        margin-bottom: 0;
    }

    .timeline-date {
        min-width: 200px;
        font-family: var(--font-primary);
        font-weight: 700;
        color: #006B52;
    }

    .timeline-date .day {
        font-family: var(--font-primary);
        font-size: 0.9rem;
    }

    .timeline-date .separator {
        margin: 0 6px;
        font-family: var(--font-primary);
    }

    .timeline-content {
        flex: 1;
        display: flex;
        gap: 16px;
        position: relative;
        font-family: var(--font-primary);
    }

    .timeline-dot {
        width: 12px;
        height: 12px;
        background: linear-gradient(135deg, #006B52, #00A74D);
        border-radius: 50%;
        margin-top: 6px;
        flex-shrink: 0;
        box-shadow: 0 0 0 3px rgba(0, 107, 82, 0.2);
    }

    .timeline-content h4 {
        font-family: var(--font-primary);
        font-size: 1rem;
        margin-bottom: 4px;
        color: #1a2c3e;
        font-weight: 700;
    }

    .timeline-content p {
        font-family: var(--font-primary);
        font-size: 0.85rem;
        color: #5a6e7c;
    }

    .composition-dates-list {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 8px;
        font-family: var(--font-primary);
        font-size: 0.8rem;
    }

    .calendar-rules {
        background: linear-gradient(135deg, #f0fdf4, #dcfce7);
        padding: 24px;
        border-radius: 20px;
        margin-bottom: 64px;
        border-left: 4px solid #00A74D;
        font-family: var(--font-primary);
    }

    .calendar-rules ul {
        list-style: none;
        padding: 0;
        font-family: var(--font-primary);
    }

    .calendar-rules li {
        padding: 6px 0;
        color: #1a5a3a;
        font-family: var(--font-primary);
    }

    /* Assistance */
    .assistance-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
        background: linear-gradient(135deg, #f0f7f4, #e8f5e9);
        border-radius: 28px;
        padding: 40px 32px;
        margin-bottom: 64px;
        border: 1px solid #c8e6d9;
        font-family: var(--font-primary);
    }

    .assistance-block {
        display: flex;
        align-items: center;
        gap: 20px;
        transition: all 0.3s;
        font-family: var(--font-primary);
    }

    .assistance-block:hover {
        transform: translateY(-3px);
    }

    .assistance-icon {
        font-size: 2rem;
        background: linear-gradient(135deg, #006B52, #00A74D);
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 30px;
        color: white;
        box-shadow: 0 4px 12px rgba(0, 107, 82, 0.3);
        font-family: var(--font-primary);
    }

    .assistance-block h4 {
        font-family: var(--font-primary);
        font-size: 1rem;
        margin-bottom: 6px;
        color: #1a2c3e;
        font-weight: 700;
    }

    .assistance-phone {
        font-family: var(--font-primary);
        font-size: 1.1rem;
        font-weight: 700;
        margin: 6px 0 4px;
        color: #006B52;
    }

    .assistance-hours {
        font-family: var(--font-primary);
        font-size: 0.7rem;
        color: #5a6e7c;
    }

    /* Espace candidat */
    .candidate-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 28px;
        font-family: var(--font-primary);
    }

    .candidate-card-new {
        background: white;
        border-radius: 24px;
        padding: 32px 24px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        font-family: var(--font-primary);
    }

    .candidate-card-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #006B52, #00A74D);
    }

    .candidate-card-new:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
        font-family: var(--font-primary);
    }

    .candidate-card-new h4 {
        font-family: var(--font-primary);
        font-size: 1.2rem;
        margin-bottom: 12px;
        color: #1a2c3e;
        font-weight: 700;
    }

    .candidate-card-new p {
        font-family: var(--font-primary);
        color: #5a6e7c;
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .info-list {
        list-style: none;
        padding: 0;
        margin: 12px 0;
        font-family: var(--font-primary);
        font-size: 0.8rem;
        color: #2d3e4e;
    }

    .info-list li {
        padding: 4px 0;
        font-family: var(--font-primary);
    }

    .candidate-btn {
        display: inline-block;
        padding: 10px 28px;
        border-radius: 40px;
        text-decoration: none;
        font-family: var(--font-primary);
        font-weight: 600;
        margin-top: 12px;
        transition: all 0.3s;
    }

    .candidate-btn.primary {
        background: linear-gradient(135deg, #006B52, #00A74D);
        color: white;
        box-shadow: 0 4px 12px rgba(0, 107, 82, 0.3);
    }

    .candidate-btn.warning {
        background: linear-gradient(135deg, #d4a017, #b8860b);
        color: white;
        box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
    }

    .candidate-btn.success {
        background: linear-gradient(135deg, #1a2c3e, #2d4a6e);
        color: white;
        box-shadow: 0 4px 12px rgba(26, 44, 62, 0.3);
    }

    .candidate-btn:hover {
        transform: translateY(-3px);
        filter: brightness(1.05);
    }

    /* Responsive */
    @media (max-width: 1100px) {
        .dispositions-cards {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 900px) {
        .concours-grid-2cols {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .insfs-modern-container {
            padding: 20px 16px;
        }

        .section-header-modern h2 {
            font-size: 1.5rem;
        }

        .convocation-wrapper {
            padding: 32px 24px;
        }

        .communique-wrapper {
            flex-direction: column;
        }

        .dispositions-cards {
            grid-template-columns: 1fr;
        }

        .timeline-item-modern {
            flex-direction: column;
            gap: 12px;
        }

        .timeline-date {
            min-width: auto;
        }

        .assistance-block {
            flex-direction: column;
            text-align: center;
        }

        .dossier-columns {
            padding: 24px;
        }
    }
 
 /* ===== POLICE UNIFORMISÉE COMME ACCUEIL ===== */
    :root {
        --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .insfs-modern-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 32px 24px;
        font-family: var(--font-primary);
        background: linear-gradient(135deg, #fafcff 0%, #ffffff 100%);
    }

    /* Section Header */
    .section-header-modern {
        text-align: center;
        margin-bottom: 40px;
        font-family: var(--font-primary);
    }

    .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #006B52, #00A74D);
        color: white;
        font-family: var(--font-primary);
        font-size: 0.7rem;
        font-weight: 700;
        padding: 5px 14px;
        border-radius: 30px;
        letter-spacing: 0.5px;
        margin-bottom: 16px;
        box-shadow: 0 2px 8px rgba(0, 107, 82, 0.2);
    }

    .section-header-modern h2 {
        font-family: var(--font-primary);
        font-size: 2rem;
        font-weight: 700;
        color: #1a2c3e;
        margin-bottom: 12px;
        position: relative;
        display: inline-block;
    }

    .section-header-modern h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #006B52, #00A74D);
        border-radius: 3px;
    }

    .section-header-modern p {
        font-family: var(--font-primary);
        color: #5a6e7c;
        font-size: 1rem;
    }

    /* Convocation Section */
    .convocation-section {
        background: linear-gradient(135deg, #1a472a 0%, #006B52 100%);
        border-radius: 24px;
        margin-bottom: 32px;
        overflow: hidden;
        position: relative;
    }

    .convocation-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-15px) scale(1.05); }
    }

    .convocation-wrapper {
        padding: 40px 48px;
        color: white;
        text-align: center;
        position: relative;
        z-index: 1;
        font-family: var(--font-primary);
    }

    .convocation-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        padding: 4px 16px;
        border-radius: 30px;
        font-family: var(--font-primary);
        font-size: 0.7rem;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .convocation-wrapper h3 {
        font-family: var(--font-primary);
        font-size: 1.8rem;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .convocation-wrapper p {
        font-family: var(--font-primary);
        opacity: 0.9;
        margin-bottom: 20px;
    }

    .convocation-list-horizontal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-bottom: 28px;
    }

    .convocation-pill {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        padding: 6px 20px;
        border-radius: 40px;
        font-family: var(--font-primary);
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.2s;
    }

    .convocation-pill:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .btn-print-convocation {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: white;
        color: #006B52;
        padding: 12px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-family: var(--font-primary);
        font-weight: 700;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .btn-print-convocation:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    /* Communique */
    .communique-wrapper {
        background: linear-gradient(135deg, #fff8e7, #fff3d6);
        border-left: 4px solid #d4a017;
        border-radius: 20px;
        padding: 24px 32px;
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        margin-bottom: 48px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        font-family: var(--font-primary);
    }

    .communique-icon {
        font-size: 2.5rem;
        font-family: var(--font-primary);
    }

    .communique-text {
        flex: 1;
        font-family: var(--font-primary);
    }

    .communique-tag {
        background: linear-gradient(135deg, #d4a017, #b8860b);
        color: white;
        padding: 2px 12px;
        border-radius: 20px;
        font-family: var(--font-primary);
        font-size: 0.7rem;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 12px;
    }

    .communique-text p {
        font-family: var(--font-primary);
        margin-bottom: 12px;
        color: #5a4a1a;
        line-height: 1.5;
    }

    .communique-text .small {
        font-family: var(--font-primary);
        font-size: 0.85rem;
        opacity: 0.8;
    }

    .communique-link {
        color: #d4a017;
        text-decoration: none;
        font-family: var(--font-primary);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
        transition: all 0.2s;
    }

    .communique-link:hover {
        color: #b8860b;
        gap: 12px;
    }

    /* Dispositions Cards */
    .dispositions-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-bottom: 64px;
    }

    .dispo-card {
        background: white;
        border-radius: 20px;
        padding: 28px 20px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        font-family: var(--font-primary);
    }

    .dispo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #006B52, #00A74D);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .dispo-card:hover::before {
        transform: scaleX(1);
    }

    .dispo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .dispo-icon {
        font-size: 2.2rem;
        margin-bottom: 16px;
        font-family: var(--font-primary);
    }

    .dispo-card h4 {
        font-family: var(--font-primary);
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #1a2c3e;
        font-weight: 700;
    }

    .dispo-card p {
        font-family: var(--font-primary);
        font-size: 0.85rem;
        color: #5a6e7c;
        line-height: 1.5;
    }

    .currency-badge {
        display: inline-block;
        background: linear-gradient(135deg, #e8f5e9, #dcfce7);
        color: #006B52;
        font-family: var(--font-primary);
        font-size: 0.7rem;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
        margin-top: 12px;
    }

    /* Concours Grid */
    .concours-grid-2cols {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 24px;
    }

    .concours-card-modern {
        background: white;
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        transition: all 0.3s;
        font-family: var(--font-primary);
    }

    .concours-card-modern:hover {
        border-color: #006B52;
        transform: translateY(-4px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .card-header-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 12px;
    }

    .concours-code {
        background: linear-gradient(135deg, #006B52, #00A74D);
        color: white;
        font-family: var(--font-primary);
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 12px;
        font-size: 0.8rem;
    }

    .concours-duration {
        background: #e8f0fe;
        color: #2c5282;
        font-family: var(--font-primary);
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 600;
    }

    .concours-card-modern h4 {
        font-family: var(--font-primary);
        font-size: 1.2rem;
        margin-bottom: 16px;
        color: #1a2c3e;
        font-weight: 700;
    }

    .concours-conditions-list {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
        font-family: var(--font-primary);
    }

    .concours-conditions-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-primary);
        font-size: 0.85rem;
        color: #2d3e4e;
        margin-bottom: 10px;
    }

    .check-bullet {
        width: 18px;
        height: 18px;
        background: linear-gradient(135deg, #006B52, #00A74D);
        border-radius: 20px;
        display: inline-block;
        position: relative;
        box-shadow: 0 2px 5px rgba(0, 107, 82, 0.3);
    }

    .check-bullet::after {
        content: "✓";
        color: white;
        font-family: var(--font-primary);
        font-size: 11px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .card-footer-links {
        display: flex;
        gap: 16px;
        padding-top: 16px;
        border-top: 1px solid #e2e8f0;
        font-family: var(--font-primary);
    }

    .link-communique {
        color: #006B52;
        text-decoration: none;
        font-family: var(--font-primary);
        font-size: 0.8rem;
        font-weight: 600;
        transition: all 0.2s;
    }

    .link-communique:hover {
        color: #00A74D;
        transform: translateX(3px);
    }

    .link-procedure {
        color: #d4a017;
        text-decoration: none;
        font-family: var(--font-primary);
        font-size: 0.8rem;
        font-weight: 600;
        transition: all 0.2s;
    }

    .link-procedure:hover {
        color: #b8860b;
        transform: translateX(3px);
    }

    .notice-warning {
        background: linear-gradient(135deg, #fef3e8, #fef9e6);
        padding: 14px 24px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-top: 8px;
        border-left: 4px solid #f59e0b;
        font-family: var(--font-primary);
    }

    .notice-icon {
        font-size: 1.2rem;
        font-family: var(--font-primary);
    }

    /* Dossier */
    .dossier-columns {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
        background: linear-gradient(135deg, #f8fafc, #ffffff);
        border-radius: 24px;
        padding: 40px;
        margin-bottom: 64px;
        border: 1px solid #e2e8f0;
        font-family: var(--font-primary);
    }

    .dossier-block .block-icon {
        font-size: 2rem;
        margin-bottom: 20px;
        font-family: var(--font-primary);
    }

    .dossier-block ul {
        list-style: none;
        padding: 0;
        font-family: var(--font-primary);
    }

    .dossier-block li {
        padding: 12px 0;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.2s;
        font-family: var(--font-primary);
    }

    .dossier-block li:hover {
        padding-left: 8px;
        background: rgba(0, 107, 82, 0.05);
    }

    .dossier-block li::before {
        content: "✓";
        color: #006B52;
        font-family: var(--font-primary);
        font-weight: 700;
        font-size: 1rem;
    }

    /* Tableau */
    .fees-table-container {
        overflow-x: auto;
        margin-bottom: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .fees-table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        border-radius: 20px;
        overflow: hidden;
        font-family: var(--font-primary);
    }

    .fees-table th {
        background: linear-gradient(135deg, #1a2c3e, #2d4a6e);
        color: white;
        padding: 16px 20px;
        text-align: left;
        font-family: var(--font-primary);
        font-weight: 600;
    }

    .fees-table td {
        padding: 14px 20px;
        border-bottom: 1px solid #e2e8f0;
        color: #2d3e4e;
        font-family: var(--font-primary);
    }

    .fees-table tr:hover td {
        background: #f8fafc;
    }

    .concours-name {
        font-family: var(--font-primary);
        font-weight: 600;
    }

    .medical-total {
        background: linear-gradient(135deg, #e8f5e9, #dcfce7);
        font-family: var(--font-primary);
        font-weight: 700;
        color: #006B52;
    }

    .total-fees {
        font-family: var(--font-primary);
        font-weight: 800;
        color: #1a2c3e;
        background: #f8fafc;
    }

    .fees-note {
        background: linear-gradient(135deg, #e8f0fe, #eff6ff);
        padding: 18px 24px;
        border-radius: 16px;
        display: flex;
        gap: 14px;
        font-family: var(--font-primary);
        font-size: 0.85rem;
        margin-bottom: 64px;
        border-left: 4px solid #3b82f6;
    }

    /* Timeline */
    .calendar-timeline-modern {
        background: white;
        border-radius: 24px;
        padding: 32px;
        margin-bottom: 28px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        font-family: var(--font-primary);
    }

    .timeline-item-modern {
        display: flex;
        margin-bottom: 28px;
        position: relative;
        font-family: var(--font-primary);
    }

    .timeline-item-modern:last-child {
        margin-bottom: 0;
    }

    .timeline-date {
        min-width: 200px;
        font-family: var(--font-primary);
        font-weight: 700;
        color: #006B52;
    }

    .timeline-date .day {
        font-family: var(--font-primary);
        font-size: 0.9rem;
    }

    .timeline-date .separator {
        margin: 0 6px;
        font-family: var(--font-primary);
    }

    .timeline-content {
        flex: 1;
        display: flex;
        gap: 16px;
        position: relative;
        font-family: var(--font-primary);
    }

    .timeline-dot {
        width: 12px;
        height: 12px;
        background: linear-gradient(135deg, #006B52, #00A74D);
        border-radius: 50%;
        margin-top: 6px;
        flex-shrink: 0;
        box-shadow: 0 0 0 3px rgba(0, 107, 82, 0.2);
    }

    .timeline-content h4 {
        font-family: var(--font-primary);
        font-size: 1rem;
        margin-bottom: 4px;
        color: #1a2c3e;
        font-weight: 700;
    }

    .timeline-content p {
        font-family: var(--font-primary);
        font-size: 0.85rem;
        color: #5a6e7c;
    }

    .composition-dates-list {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 8px;
        font-family: var(--font-primary);
        font-size: 0.8rem;
    }

    .calendar-rules {
        background: linear-gradient(135deg, #f0fdf4, #dcfce7);
        padding: 24px;
        border-radius: 20px;
        margin-bottom: 64px;
        border-left: 4px solid #00A74D;
        font-family: var(--font-primary);
    }

    .calendar-rules ul {
        list-style: none;
        padding: 0;
        font-family: var(--font-primary);
    }

    .calendar-rules li {
        padding: 6px 0;
        color: #1a5a3a;
        font-family: var(--font-primary);
    }

    /* Assistance */
    .assistance-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
        background: linear-gradient(135deg, #f0f7f4, #e8f5e9);
        border-radius: 28px;
        padding: 40px 32px;
        margin-bottom: 64px;
        border: 1px solid #c8e6d9;
        font-family: var(--font-primary);
    }

    .assistance-block {
        display: flex;
        align-items: center;
        gap: 20px;
        transition: all 0.3s;
        font-family: var(--font-primary);
    }

    .assistance-block:hover {
        transform: translateY(-3px);
    }

    .assistance-icon {
        font-size: 2rem;
        background: linear-gradient(135deg, #006B52, #00A74D);
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 30px;
        color: white;
        box-shadow: 0 4px 12px rgba(0, 107, 82, 0.3);
        font-family: var(--font-primary);
    }

    .assistance-block h4 {
        font-family: var(--font-primary);
        font-size: 1rem;
        margin-bottom: 6px;
        color: #1a2c3e;
        font-weight: 700;
    }

    .assistance-phone {
        font-family: var(--font-primary);
        font-size: 1.1rem;
        font-weight: 700;
        margin: 6px 0 4px;
        color: #006B52;
    }

    .assistance-hours {
        font-family: var(--font-primary);
        font-size: 0.7rem;
        color: #5a6e7c;
    }

    /* Espace candidat */
    .candidate-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 28px;
        font-family: var(--font-primary);
    }

    .candidate-card-new {
        background: white;
        border-radius: 24px;
        padding: 32px 24px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        font-family: var(--font-primary);
    }

    .candidate-card-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #006B52, #00A74D);
    }

    .candidate-card-new:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
        font-family: var(--font-primary);
    }

    .candidate-card-new h4 {
        font-family: var(--font-primary);
        font-size: 1.2rem;
        margin-bottom: 12px;
        color: #1a2c3e;
        font-weight: 700;
    }

    .candidate-card-new p {
        font-family: var(--font-primary);
        color: #5a6e7c;
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .info-list {
        list-style: none;
        padding: 0;
        margin: 12px 0;
        font-family: var(--font-primary);
        font-size: 0.8rem;
        color: #2d3e4e;
    }

    .info-list li {
        padding: 4px 0;
        font-family: var(--font-primary);
    }

    .candidate-btn {
        display: inline-block;
        padding: 10px 28px;
        border-radius: 40px;
        text-decoration: none;
        font-family: var(--font-primary);
        font-weight: 600;
        margin-top: 12px;
        transition: all 0.3s;
    }

    .candidate-btn.primary {
        background: linear-gradient(135deg, #006B52, #00A74D);
        color: white;
        box-shadow: 0 4px 12px rgba(0, 107, 82, 0.3);
    }

    .candidate-btn.warning {
        background: linear-gradient(135deg, #d4a017, #b8860b);
        color: white;
        box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
    }

    .candidate-btn.success {
        background: linear-gradient(135deg, #1a2c3e, #2d4a6e);
        color: white;
        box-shadow: 0 4px 12px rgba(26, 44, 62, 0.3);
    }

    .candidate-btn:hover {
        transform: translateY(-3px);
        filter: brightness(1.05);
    }

    /* Responsive */
    @media (max-width: 1100px) {
        .dispositions-cards {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 900px) {
        .concours-grid-2cols {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .insfs-modern-container {
            padding: 20px 16px;
        }

        .section-header-modern h2 {
            font-size: 1.5rem;
        }

        .convocation-wrapper {
            padding: 32px 24px;
        }

        .communique-wrapper {
            flex-direction: column;
        }

        .dispositions-cards {
            grid-template-columns: 1fr;
        }

        .timeline-item-modern {
            flex-direction: column;
            gap: 12px;
        }

        .timeline-date {
            min-width: auto;
        }

        .assistance-block {
            flex-direction: column;
            text-align: center;
        }

        .dossier-columns {
            padding: 24px;
        }
    }

/* ===== POLICE UNIFORMISÉE COMME ACCUEIL ===== */
    :root {
        --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    }
    
    .insfs-lock-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 32px 24px;
        background: linear-gradient(135deg, #fafcff 0%, #ffffff 100%);
        font-family: var(--font-primary);
    }

    .diffusion-modern {
        background: white;
        border-radius: 20px;
        padding: 24px;
        margin-bottom: 24px;
        border-left: 4px solid;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
        font-family: var(--font-primary);
    }

    .diffusion-modern:hover {
        transform: translateX(5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .diffusion-modern-title {
        font-family: var(--font-primary);
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .types-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .type-modern-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s;
        border: 1px solid #e2e8f0;
        font-family: var(--font-primary);
    }

    .type-modern-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .type-link-wrapper {
        text-decoration: none;
        color: inherit;
        display: block;
        font-family: var(--font-primary);
    }

    .type-image-modern {
        padding: 28px;
        text-align: center;
        background: linear-gradient(135deg, #f8fafc, #ffffff);
    }

    .type-image-modern img {
        max-width: 120px;
        height: auto;
        transition: all 0.3s;
    }

    .type-modern-card:hover .type-image-modern img {
        transform: scale(1.05);
    }

    .type-content-modern {
        padding: 20px;
        font-family: var(--font-primary);
    }

    .type-arrow {
        display: inline-block;
        margin-top: 16px;
        color: #006B52;
        font-family: var(--font-primary);
        font-weight: 600;
        transition: all 0.2s;
    }

    .type-arrow:hover {
        transform: translateX(5px);
    }

    .info-modern-card {
        background: linear-gradient(135deg, #e8f5e9, #dcfce7);
        border-radius: 20px;
        padding: 28px;
        margin-bottom: 48px;
        border: 1px solid #c8e6d9;
        font-family: var(--font-primary);
    }

    .info-modern-card h5 {
        font-family: var(--font-primary);
        margin-bottom: 16px;
        color: #1a5a3a;
        font-weight: 700;
    }

    .info-modern-card ul {
        padding-left: 20px;
        font-family: var(--font-primary);
    }

    .info-modern-card li {
        margin: 8px 0;
        color: #2d3e4e;
        font-family: var(--font-primary);
    }

    .assistance-modern {
        background: linear-gradient(135deg, #f0f7f4, #e8f5e9);
        border-radius: 20px;
        padding: 32px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 24px;
        margin-bottom: 48px;
        border: 1px solid #c8e6d9;
        font-family: var(--font-primary);
    }

    .assist-modern-item {
        display: flex;
        align-items: center;
        gap: 18px;
        transition: all 0.3s;
        font-family: var(--font-primary);
    }

    .assist-modern-item:hover {
        transform: translateY(-3px);
    }

    .assist-icon {
        font-size: 1.8rem;
        background: linear-gradient(135deg, #006B52, #00A74D);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 25px;
        color: white;
        box-shadow: 0 4px 12px rgba(0, 107, 82, 0.3);
        font-family: var(--font-primary);
    }

    .assist-number {
        font-family: var(--font-primary);
        font-weight: 700;
        margin-top: 6px;
        color: #006B52;
    }

    .actions-modern-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
    }

    .action-modern-card {
        background: white;
        border-radius: 24px;
        padding: 32px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        text-align: center;
        transition: all 0.3s;
        font-family: var(--font-primary);
    }

    .action-modern-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .action-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
        font-family: var(--font-primary);
    }

    .action-modern-card h4 {
        font-family: var(--font-primary);
        margin-bottom: 12px;
        color: #1a2c3e;
        font-weight: 700;
    }

    .action-modern-card ul {
        text-align: left;
        margin: 16px 0;
        padding-left: 20px;
        color: #2d3e4e;
        font-family: var(--font-primary);
    }

    .action-modern-card li {
        margin: 6px 0;
        font-family: var(--font-primary);
    }

    .action-btn {
        display: inline-block;
        padding: 12px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-family: var(--font-primary);
        font-weight: 600;
        margin-top: 16px;
        transition: all 0.3s;
    }

    .action-btn.primary {
        background: linear-gradient(135deg, #006B52, #00A74D);
        color: white;
        box-shadow: 0 4px 12px rgba(0, 107, 82, 0.3);
    }

    .action-btn.success {
        background: linear-gradient(135deg, #1a2c3e, #2d4a6e);
        color: white;
        box-shadow: 0 4px 12px rgba(26, 44, 62, 0.3);
    }

    .action-btn:hover {
        transform: translateY(-3px);
        filter: brightness(1.05);
    }

    @media (max-width: 768px) {
        .insfs-lock-container {
            padding: 20px 16px;
        }

        .assist-modern-item {
            flex-direction: column;
            text-align: center;
        }
    }