.asan-wrapper{
    max-width:1000px;
    margin:auto;
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.asan-wrapper h2{
    color:#0a7d3b;
    margin-bottom:15px;
}

.asan-progress{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin:30px 0;
    flex-wrap:nowrap;
}

.step{
    flex:1;
    text-align:center;
}

.step span{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#ccc;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto;
    font-weight:bold;
}

.step.active span{
    background:#0a7d3b;
}

.step p{
    margin-top:8px;
    font-size:12px;
}

.asan-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.asan-grid label{
    display:block;
    margin-bottom:5px;
    font-weight:600;
}

.asan-grid input,
.asan-grid select,
.asan-grid textarea{
    width:100%;
    padding:10px;
}

.asan-nav{
    margin-top:20px;
}

.asan-nav button{
    background:#0a7d3b;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:4px;
    cursor:pointer;
}

 .asan-step{
    display:none;
}

.asan-step.active{
    display:block;
}

.asan-progress{
    position:relative;
}

.asan-progress::before{

    content:'';

    position:absolute;

    top:20px;

    left:6%;

    width:88%;

    height:3px;

    background:#e5e5e5;

    z-index:0;

}

.step{

    position:relative;

    z-index:2;

}

.asan-grid small{
    display:block;
    margin-top:5px;
    color:#666;
    font-size:12px;
}

textarea{
    width:100%;
    padding:10px;
    resize:vertical;
}

.step.active p{
    color:#0a7d3b;
    font-weight:600;
}

.qualification-row{

    background:#fafafa;

    border:1px solid #e5e5e5;

    padding:20px;

    margin-bottom:20px;

    border-radius:8px;

}

.asan-add-btn{

    background:#0a7d3b;

    color:#fff;

    border:none;

    padding:10px 20px;

    border-radius:4px;

    cursor:pointer;

    margin-top:15px;

}

h4{

    color:#0a7d3b;

    margin-top:20px;

    margin-bottom:15px;

}

hr{

    border:none;

    border-top:1px solid #ddd;

    margin:25px 0;

}

.document-card{

    background:#fafafa;

    border:1px solid #e5e5e5;

    border-radius:8px;

    padding:20px;

    margin-bottom:25px;

}

.document-card h4{

    margin-top:0;

}

.credential-row{

    margin-bottom:20px;

}

.preview-card{

    background:#fafafa;

    border:1px solid #ddd;

    border-radius:8px;

    padding:20px;

    margin-bottom:25px;

}

.declaration-box{

    background:#fff8e6;

    border-left:4px solid #f0ad4e;

    padding:20px;

    margin-bottom:25px;

}

#submit-application{

    background:#0a7d3b;

    color:#fff;

    border:none;

    padding:12px 25px;

    border-radius:4px;

    cursor:pointer;

}

@media(max-width:768px){

    .asan-progress{
        flex-wrap:wrap;
        gap:15px;
    }

    .asan-grid{
        grid-template-columns:1fr;
    }
    
}