.pay-later-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f4f7ff 0%, #ecfff4 100%);
    overflow: hidden;
}
.pay-later-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #1340de;
    margin-bottom: 18px;
}
.pay-later-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 560px;
    margin-bottom: 25px;
}
.pay-later-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.pay-later-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 14px;
}
.pay-later-list li i {
    color: #28a354;
    font-size: 20px;
}
.pay-later-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #28a354;
    color: #fff;
    padding: 15px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(40,163,84,0.25);
    transition: all .3s ease;
}
.pay-later-btn:hover {
    background: #1340de;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(19,64,222,0.25);
}
.pay-later-box {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pay-card {
    background: linear-gradient(135deg, rgba(19,64,222,0.95) 0%, rgba(40,163,84,0.92) 100%);
    color: #fff;
    border-radius: 28px;
    box-shadow: 0 25px 55px rgba(19,64,222,0.22);
}
.pay-card-main {
    width: 420px;
    height: 420px;
    padding: 0;
    overflow: hidden;
}

.pay-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.pay-card-small {
    position: absolute;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
    font-weight: 700;
}
.pay-card-small i {
    color: #86efac;
    font-size: 22px;
}

.pay-card-two {
    right: 25px;
    bottom: 45px;
}
@media (max-width: 991px) {
    .pay-later-section {
        padding: 60px 0;
    }
    .pay-later-content h2 {
        font-size: 34px;
    }
    .pay-later-box {
        min-height: 320px;
    }
}
@media (max-width: 575px) {
    .pay-card-main {
        width: 100%;
        
    }
    .pay-card-small {
        position: static;
        margin-top: 14px;
        justify-content: center;
    }
    .pay-later-box {
        display: block;
        min-height: auto;
    }
}