     body { background-color: #f8f9fa; }
        
        .container { max-width: 400px; margin: auto; margin-top: 50px; padding: 3px 3px 3px 3px;
            background: linear-gradient(to right, #ff5733, #ffcc00); border-radius: 10px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            animation: lightSpin 5s infinite;
        }
        .card-header { background-color: #0e2a47; color: white; font-weight: bold; text-align: center;
            padding: 10px; border-radius: 10px 10px 0 0; }
        .btn-enregistrer { background: linear-gradient(to right, #ff5733, #ffcc00); color: white; font-weight: bold; }
        .form-group { margin-bottom: 15px; }
        .step { display: none; }
        .visible { display: block !important; }
        .error { color: red; font-size: 12px; display: none; }
        .required { color: red; }
        .modal-content { background: linear-gradient(to right, #ff5733, #ffcc00); color: white; border-radius: 10px; }
        .logo {
            max-width: 100px;
            display: block;
            margin: 0 auto 10px auto;
        }
        .logo-bizypam {
            max-height: 60px;
            display: block;
            margin: auto;
            object-fit: contain;
            margin-top: -2px;
            margin-bottom: -22px;
            background-color: #0e2a47; color: white; font-weight: bold; text-align: center;
            padding: 0px; border-radius:2px 10px 0 0; 
            
        }
        
        .header-custom {
            background: linear-gradient(135deg, #011f36, #1a3c5b);
            padding: 2px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1001;
            border-bottom: 3px solid #FFD700;
        }
        .site-title {
            display: flex;
            align-items: center;
            height: 100%;
        }
        .site-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
        }
        .wp-block-navigation {
            display: flex;
            gap: 1.5rem;
        }
        .wp-block-navigation a {
            text-decoration: none;
            color: #FFD700;
            font-size: 1rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease-in-out;
        }
        .wp-block-navigation a:hover {
            background-color: white;
            color: #00264d;
            transform: scale(1.1);
            box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);
            font-weight: bold;
        }
        .mobile-menu {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fff;
        }
        .intro-text {
            background-color: #007BFF;
            color: white;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
            font-size: 1.2rem;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .wp-block-navigation {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                right: 0;
                background-color: #011f36;
                width: 60%;
                text-align: center;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
                padding: 1rem 0;
                z-index: 1000;
            }
            .wp-block-navigation.active {
                display: flex;
            }
            .mobile-menu {
                display: block;
            }
        }
        .back-arrow {
            margin-bottom: 10px;
            font-size: 16px;
            color: blue;
            cursor: pointer;
        }
        .card-header span { 
            display: block;
            margin-top: 22px;
        }
        
        
        /* Nouvo container pou kenbe flèch la ak endikatè a kòt a kòt */
.progress-section {
    display: flex;
    align-items: center; /* Aliyen yo vètikalman */
    justify-content: space-between; /* Mete flèch la a goch, endikatè a a dwat */
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee; /* Opsyonèl: yon ti liy separasyon */
}

/* Kòd pou Endikatè Pwogrè a (Progress Indicator) */
.progress-indicator {
    display: flex;
    /* justify-content: flex-end; */ /* Si ou vle li kole a dwat */
    justify-content: center; /* Si ou vle li santre nan espas pa li a */
    align-items: center;
    width: 60%; /* Bay li yon ti lajè pou l pa pran tout espas la */
}

.progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 10px;
    position: relative;
    transition: background-color 0.3s;
}

/* Liy ant etap yo */
.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px; /* Redwi sa pou yo pi kole */
    width: 20px; /* Redwi lajè liy lan */
    height: 2px;
    background: #ccc;
    transform: translateY(-50%);
    z-index: -1;
}

/* Estil pou etap ki fini (Class .is-done) */
.progress-step.is-done {
    background-color: #28a745; /* Vèt: Lè l fini */
}

.progress-step.is-done::after {
    background: #28a745; 
}

/* Estil pou flèch la (Back Arrow) */
.back-arrow {
    font-size: 14px;
    color: #007bff;
    cursor: pointer;
    font-weight: bold;
    visibility: hidden; /* Li kache nan Step 1 */
    width: 40%; /* Pou l ka okipe espas li akòz progress-indicator la */
}
        