    @font-face {
        font-family: 'LektoratText';
        src: url('https://esad-amiens.design/assets/css/fonts/LektoratText-Regular.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }
    
    @font-face {
        font-family: 'LektoratText';
        src: url('https://esad-amiens.design/assets/css/fonts/LektoratText-Bold.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }
    
    body {
        background-color: #dddddd !important;
        margin: 0;
        padding: 0;
    }
    
    .esad-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 40px 60px;
        font-family: 'LektoratText', Georgia, serif;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .esad-logo {
        margin-bottom: 50px;
    }
    
    .esad-logo svg {
        height: 40px;
        width: auto;
    }
    
    .esad-header {
        margin-bottom: 50px;
        padding-bottom: 25px;
        border-bottom: 1px solid #ccc;
    }
    
    .esad-header h1 {
        font-size: 26px;
        font-weight: 400;
        color: #000;
        margin: 0;
        letter-spacing: -0.3px;
        line-height: 1.3;
    }
    
    .esad-section-title {
        margin-bottom: 30px;
    }
    
    .esad-section-title h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin: 0;
        padding-bottom: 15px;
        border-bottom: 2px solid #000;
        display: inline-block;
    }
    
    .esad-buttons {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
    }
    
    .esad-buttons button {
        font-family: 'LektoratText', Georgia, serif;
        font-size: 14px;
        font-weight: 700;
        padding: 12px 28px;
        border: 2px solid #000;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .esad-buttons .btn-primary {
        background: #000;
        color: #fff;
    }
    
    .esad-buttons .btn-primary:hover {
        background: #333;
    }
    
    .esad-buttons .btn-secondary {
        background: #fff;
        color: #000;
    }
    
    .esad-buttons .btn-secondary:hover {
        background: #f5f5f5;
    }
    
    .esad-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    @media (max-width: 900px) {
        .esad-grid { grid-template-columns: 1fr; gap: 50px; }
        .esad-buttons { flex-wrap: wrap; }
        .esad-buttons button { width: 100%; }
        .esad-forgot-link { width: 100%; text-align: center; margin-left: 0; margin-top: 5px; }
        .esad-container { padding: 30px 20px 50px; }
    }
    
    .esad-column {
        padding-top: 25px;
        border-top: 2px solid #000;
    }
    
    .esad-column-title {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin: 0 0 4px 0;
    }
    
    .esad-column-subtitle {
        font-size: 13px;
        color: #888;
        margin: 0 0 30px 0;
        font-weight: 400;
    }
    
    .esad-step {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .esad-step:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .esad-step-header {
        display: flex;
        align-items: baseline;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .esad-step-num {
        font-size: 11px;
        font-weight: 700;
        color: #fff;
        background: #000;
        padding: 3px 7px;
        flex-shrink: 0;
    }
    
    .esad-step-title {
        font-size: 15px;
        font-weight: 700;
        color: #000;
        margin: 0;
    }
    
    .esad-step-content {
        padding-left: 38px;
        font-size: 14px;
        color: #333;
    }
    
    .esad-step-content p {
        margin: 0 0 8px 0;
    }
    
    .esad-step-content p:last-child {
        margin-bottom: 0;
    }
    
    .esad-date {
        font-weight: 700;
        color: #000;
    }
    
    .esad-step-content a {
        color: #000;
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    
    .esad-step-content a:hover {
        color: #ff0000;
    }
    
    .esad-note {
        margin-top: 10px;
        padding: 10px 12px;
        background: #f5f5f5;
        border-left: 2px solid #000;
        font-size: 13px;
        color: #333;
    }
    
    .esad-epreuves {
        margin: 10px 0;
        padding: 0;
        list-style: none;
    }
    
    .esad-epreuves li {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        border-bottom: 1px solid #eee;
        font-size: 13px;
    }
    
    .esad-epreuves li:last-child {
        border-bottom: none;
    }
    
    .esad-epreuves li span:first-child {
        color: #000;
    }
    
    .esad-epreuves li span:last-child {
        color: #666;
    }
    
    .esad-footer {
        margin-top: 60px;
        padding-top: 25px;
        border-top: 1px solid #000;
    }
    
    .esad-footer-title {
        font-size: 14px;
        font-weight: 700;
        color: #000;
        margin: 0 0 12px 0;
    }
    
    .esad-footer p {
        font-size: 13px;
        color: #333;
        margin: 5px 0;
        line-height: 1.6;
    }
    
    .esad-footer a {
        color: #000;
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    
    .esad-footer a:hover {
        color: #ff0000;
    }
    
    .esad-equivalence {
        margin-top: 60px;
        padding-top: 40px;
        border-top: 1px solid #ccc;
        margin-bottom: 30px;
    }
    
    .esad-section-title p {
        font-size: 14px;
        color: #666;
        margin: 10px 0 0 0;
    }
    
    .esad-alert {
        padding: 15px 20px;
        border: 1px solid #000;
        border-left: 3px solid #ff0000;
        margin-bottom: 40px;
        font-size: 14px;
        color: #000;
        background: #fff;
    }
    
    /* Style des modals */
    .modal-content {
        font-family: 'LektoratText', Georgia, serif;
        border-radius: 0;
        border: 2px solid #000;
        box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    }
    
    .modal-content .nav-tabs {
        border-bottom: 1px solid #ccc;
        margin: 0 20px;
    }
    
    .modal-content .nav-tabs > li > a {
        color: #666;
        border: none;
        border-radius: 0;
        font-weight: 700;
        font-size: 14px;
    }
    
    .modal-content .nav-tabs > li.active > a,
    .modal-content .nav-tabs > li.active > a:hover,
    .modal-content .nav-tabs > li.active > a:focus {
        color: #000;
        border: none;
        border-bottom: 2px solid #000;
        background: transparent;
    }
    
    .modal-content .modal-body {
        padding: 25px 30px;
        color: #000;
        background: #fff;
    }
    
    .modal-content .control-group {
        margin-bottom: 15px;
    }
    
    .modal-content .control-label {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: #000;
        margin-bottom: 5px;
    }
    
    .modal-content .form-control {
        width: 100%;
        padding: 10px 12px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 0;
        font-family: 'LektoratText', Georgia, serif;
        color: #000;
        background: #fff;
    }
    
    .modal-content .form-control:focus {
        border-color: #000;
        outline: none;
        box-shadow: none;
    }
    
    .modal-content .form-control::placeholder {
        color: #999;
    }
    
    .modal-content .btn-success {
        background: #000;
        border: 2px solid #000;
        color: #fff;
        font-family: 'LektoratText', Georgia, serif;
        font-weight: 700;
        font-size: 14px;
        padding: 10px 25px;
        border-radius: 0;
        margin-top: 10px;
    }
    
    .modal-content .btn-success:hover {
        background: #333;
    }
    
    .modal-content .modal-footer {
        border-top: 1px solid #eee;
        padding: 15px 20px;
        background: #f9f9f9;
    }
    
    .modal-content .btn-default {
        background: #fff;
        border: 1px solid #ccc;
        color: #666;
        font-family: 'LektoratText', Georgia, serif;
        font-size: 13px;
        padding: 8px 20px;
        border-radius: 0;
    }
    
    .modal-content .btn-default:hover {
        background: #f5f5f5;
        border-color: #000;
        color: #000;
    }
    
    .modal-content p,
    .modal-content .tab-pane {
        color: #333;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .modal-content a {
        color: #000;
        text-decoration: underline;
    }
    
    .modal-content a:hover {
        color: #ff0000;
    }

   @font-face {
        font-family: 'LektoratText';
        src: url('https://esad-amiens.design/assets/css/fonts/LektoratText-Regular.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }
    
    @font-face {
        font-family: 'LektoratText';
        src: url('https://esad-amiens.design/assets/css/fonts/LektoratText-Bold.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }
    
    body {
        background-color: #dddddd !important;
        margin: 0;
        padding: 0;
    }
    
    .esad-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 40px 60px;
        font-family: 'LektoratText', Georgia, serif;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .esad-logo {
        margin-bottom: 50px;
    }
    
    .esad-logo svg {
        height: 40px;
        width: auto;
    }
    
    .esad-header {
        margin-bottom: 50px;
        padding-bottom: 25px;
        border-bottom: 1px solid #ccc;
    }
    
    .esad-header h1 {
        font-size: 26px;
        font-weight: 400;
        color: #000;
        margin: 0;
        letter-spacing: -0.3px;
        line-height: 1.3;
    }
    
    .esad-section-title {
        margin-bottom: 30px;
    }
    
    .esad-section-title h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin: 0;
        padding-bottom: 15px;
        border-bottom: 2px solid #000;
        display: inline-block;
    }
    
    .esad-buttons {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
    }
    
    .esad-buttons button {
        font-family: 'LektoratText', Georgia, serif;
        font-size: 14px;
        font-weight: 700;
        padding: 12px 28px;
        border: 2px solid #000;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .esad-buttons .btn-primary {
        background: #000;
        color: #fff;
    }
    
    .esad-buttons .btn-primary:hover {
        background: #333;
    }
    
    .esad-buttons .btn-secondary {
        background: #fff;
        color: #000;
    }
    
    .esad-buttons .btn-secondary:hover {
        background: #f5f5f5;
    }
    
    .esad-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    @media (max-width: 900px) {
        .esad-grid { grid-template-columns: 1fr; gap: 50px; }
        .esad-buttons { flex-wrap: wrap; }
        .esad-buttons button { width: 100%; }
        .esad-forgot-link { width: 100%; text-align: center; margin-left: 0; margin-top: 5px; }
        .esad-container { padding: 30px 20px 50px; }
    }
    
    .esad-column {
        padding-top: 25px;
        border-top: 2px solid #000;
    }
    
    .esad-column-title {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin: 0 0 4px 0;
    }
    
    .esad-column-subtitle {
        font-size: 13px;
        color: #888;
        margin: 0 0 30px 0;
        font-weight: 400;
    }
    
    .esad-step {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .esad-step:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .esad-step-header {
        display: flex;
        align-items: baseline;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .esad-step-num {
        font-size: 11px;
        font-weight: 700;
        color: #fff;
        background: #000;
        padding: 3px 7px;
        flex-shrink: 0;
    }
    
    .esad-step-title {
        font-size: 15px;
        font-weight: 700;
        color: #000;
        margin: 0;
    }
    
    .esad-step-content {
        padding-left: 38px;
        font-size: 14px;
        color: #333;
    }
    
    .esad-step-content p {
        margin: 0 0 8px 0;
    }
    
    .esad-step-content p:last-child {
        margin-bottom: 0;
    }
    
    .esad-date {
        font-weight: 700;
        color: #000;
    }
    
    .esad-step-content a {
        color: #000;
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    
    .esad-step-content a:hover {
        color: #ff0000;
    }
    
    .esad-note {
        margin-top: 10px;
        padding: 10px 12px;
        background: #f5f5f5;
        border-left: 2px solid #000;
        font-size: 13px;
        color: #333;
    }
    
    .esad-epreuves {
        margin: 10px 0;
        padding: 0;
        list-style: none;
    }
    
    .esad-epreuves li {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        border-bottom: 1px solid #eee;
        font-size: 13px;
    }
    
    .esad-epreuves li:last-child {
        border-bottom: none;
    }
    
    .esad-epreuves li span:first-child {
        color: #000;
    }
    
    .esad-epreuves li span:last-child {
        color: #666;
    }
    
    .esad-footer {
        margin-top: 60px;
        padding-top: 25px;
        border-top: 1px solid #000;
    }
    
    .esad-footer-title {
        font-size: 14px;
        font-weight: 700;
        color: #000;
        margin: 0 0 12px 0;
    }
    
    .esad-footer p {
        font-size: 13px;
        color: #333;
        margin: 5px 0;
        line-height: 1.6;
    }
    
    .esad-footer a {
        color: #000;
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    
    .esad-footer a:hover {
        color: #ff0000;
    }
    
    .esad-equivalence {
        margin-top: 60px;
        padding-top: 40px;
        border-top: 1px solid #ccc;
        margin-bottom: 30px;
    }
    
    .esad-section-title p {
        font-size: 14px;
        color: #666;
        margin: 10px 0 0 0;
    }
    
    .esad-alert {
        padding: 15px 20px;
        border: 1px solid #000;
        border-left: 3px solid #ff0000;
        margin-bottom: 40px;
        font-size: 14px;
        color: #000;
        background: #fff;
    }
    
    .esad-event {
        padding: 20px 25px;
        border: 2px solid #000;
        margin-bottom: 40px;
        font-size: 14px;
        color: #000;
        background: #f9f9f9;
    }
    
    .esad-event-title {
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 12px 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .esad-event-date {
        font-weight: 700;
        color: #000;
    }
    
    .esad-event ul {
        margin: 10px 0 0 0;
        padding: 0 0 0 20px;
        list-style: disc;
    }
    
    .esad-event li {
        margin-bottom: 5px;
        line-height: 1.5;
    }
    
    /* Style des modals */
    .modal-content {
        font-family: 'LektoratText', Georgia, serif;
        border-radius: 0;
        border: 2px solid #000;
        box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    }
    
    .modal-content .nav-tabs {
        border-bottom: 1px solid #ccc;
        margin: 0 20px;
    }
    
    .modal-content .nav-tabs > li > a {
        color: #666;
        border: none;
        border-radius: 0;
        font-weight: 700;
        font-size: 14px;
    }
    
    .modal-content .nav-tabs > li.active > a,
    .modal-content .nav-tabs > li.active > a:hover,
    .modal-content .nav-tabs > li.active > a:focus {
        color: #000;
        border: none;
        border-bottom: 2px solid #000;
        background: transparent;
    }
    
    .modal-content .modal-body {
        padding: 25px 30px;
        color: #000;
        background: #fff;
    }
    
    .modal-content .control-group {
        margin-bottom: 15px;
    }
    
    .modal-content .control-label {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: #000;
        margin-bottom: 5px;
    }
    
    .modal-content .form-control {
        width: 100%;
        padding: 10px 12px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 0;
        font-family: 'LektoratText', Georgia, serif;
        color: #000;
        background: #fff;
    }
    
    .modal-content .form-control:focus {
        border-color: #000;
        outline: none;
        box-shadow: none;
    }
    
    .modal-content .form-control::placeholder {
        color: #999;
    }
    
    .modal-content .btn-success {
        background: #000;
        border: 2px solid #000;
        color: #fff;
        font-family: 'LektoratText', Georgia, serif;
        font-weight: 700;
        font-size: 14px;
        padding: 10px 25px;
        border-radius: 0;
        margin-top: 10px;
    }
    
    .modal-content .btn-success:hover {
        background: #333;
    }
    
    .modal-content .modal-footer {
        border-top: 1px solid #eee;
        padding: 15px 20px;
        background: #f9f9f9;
    }
    
    .modal-content .btn-default {
        background: #fff;
        border: 1px solid #ccc;
        color: #666;
        font-family: 'LektoratText', Georgia, serif;
        font-size: 13px;
        padding: 8px 20px;
        border-radius: 0;
    }
    
    .modal-content .btn-default:hover {
        background: #f5f5f5;
        border-color: #000;
        color: #000;
    }
    
    .modal-content p,
    .modal-content .tab-pane {
        color: #333;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .modal-content a {
        color: #000;
        text-decoration: underline;
    }
    
    .modal-content a:hover {
        color: #ff0000;
    }
