.bank-accounts-section {
  background-color: #f9fafb;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.bank-accounts-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.bank-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 500px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.bank-logo {
  max-height: 50px;
  margin-bottom: 20px;
  object-fit: contain;
}

.bank-info {
  background-color: #f1f5f9;
  border-radius: 12px;
  padding: 15px;
  text-align: left;
  font-size: 15px;
  color: #374151;
  margin-bottom: 20px;
}

.bank-info p {
  margin: 8px 0;
}

.payment-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2563eb;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.payment-button:hover {
  background-color: #1e40af;
}
.bank-section-header {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.bank-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.bank-section-subtitle {
  font-size: 16px;
  color: #6b7280;
  font-family: 'Inter', sans-serif;
}