body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f6f8;
    color: #333;
}

header {
    background: #0a66c2;
    color: white;
    padding: 2rem;
    text-align: center;
}

.bank-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.bank-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bank-card img {
    max-height: 150px;
    margin-bottom: 1rem;
}

.logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

.bank-card h2 {
    margin: 0.5rem 0;
}

.bank-card p {
    font-size: 0.95rem;
}

.bank-card a {
    margin-top: 1rem;
    text-align: center;
    padding: 0.7rem;
    background: #0a66c2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.bank-card a:hover {
    background: #084e96;
}

footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
    background: #eaeaea;
}
