.bank-card {
    padding: 1rem;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.bank-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.bank-logo {
    height: 100px;
    object-fit: contain;
}

.bank-name {
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

.btn-success {
    background: #4CB748 !important;
    color: white !important;
}

.btn-outline-success {
    border: 1px solid #4CB748 !important;
    color: #4CB748;
}

.banner img {
    width: 100%;
    height: auto;
}