@import url('');
@font-face {
    font-family: MyFontName;
    src: url(./fonts/clip.woff)
}
.purchase-guide{
    max-width:900px;
    margin:30px auto;
    direction:rtl;
    font-family:MyFontName,sans-serif;
}

.purchase-title{
    text-align:center;
    margin-bottom:30px;
}

.purchase-title h2{
    margin:0;
    font-size:38px;
    color:#1f2937;
}

.purchase-title .line{
    width:80px;
    height:4px;
    background:#3b82f6;
    margin:15px auto 0;
    border-radius:10px;
}

.step-box{
    display:flex;
    align-items:center;
    justify-content:space-between;

    background:#fff;
    border-radius:20px;
    padding:20px;

    margin-bottom:15px;

    box-shadow:
        0 5px 20px rgba(0,0,0,.05);

    border:1px solid #edf2f7;
}

.step-number{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#3b82f6;
    color:#fff;

    font-size:28px;
    font-weight:bold;

    border-radius:18px;

    box-shadow:
        0 10px 20px rgba(59,130,246,.3);
}

.step-icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    background:#f8fafc;
    border-radius:50%;
}

.step-text{
    flex:1;
    padding:0 25px;
    font-size:18px;
    color:#374151;
    line-height:1.9;
}

.success .step-number{
    background:#22c55e;
    box-shadow:
        0 10px 20px rgba(34,197,94,.3);
}

@media(max-width:768px){

    .purchase-title h2{
        font-size:28px;
    }

    .step-box{
        padding:15px;
    }

    .step-text{
        font-size:15px;
        padding:0 10px;
    }

    .step-number{
        width:55px;
        height:55px;
        font-size:20px;
    }

    .step-icon{
        width:55px;
        height:55px;
        font-size:24px;
    }
}