.payments-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.payments-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1f1f1f;
    border-radius: 16px;
    text-align: center;
    padding: 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #2a2a2a;
}

.payments-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.payments-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.payments-card h3 {
    margin: 0.5rem 0 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.payments-card p {
    font-size: 0.9rem;
    color: #bbb;
}

@media (max-width: 768px) {
    .payments-card {
        padding: 1rem;
    }
}