.payment-hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.payment-card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
    border: none;
}

.payment-card:hover {
    transform: translateY(-5px);
}

.bank-logo {
    max-height: 60px;
    margin-bottom: 1rem;
}

.payment-method {
    height: 40px;
    margin: 0.5rem;
}

.qr-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.important-note {
    border-left: 4px solid #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
    padding: 1.5rem;
}

.payment-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.step-number {
    background-color: #0d6efd;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}