body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ebd7d7;
}
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 150px;
  height: auto;
  display: block;
  max-width: 80%;
  mix-blend-mode: multiply;
  z-index: 1000;
}
header {
  background-color: #003366;
  color: white;
  padding: 60px 20px 20px;
  text-align: center;
  position: relative;
}
header h1 {
  margin: 0;
  font-size: 2rem;
}
header h2 {
  margin: 10px 0 0;
  font-size: 1.2rem;
  font-weight: normal;
  color: #f0f0f0;
}
.bank-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
}
.bank-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 2rem;
}
.bank-item {
  background-color: rgb(245, 237, 237);
  border: 1px solid #ddd;
  border-radius: 15px;
  width: 150px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bank-item img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.bank-item a {
  display: block;
  margin-top: 10px;
  color: #003366;
  text-decoration: none;
  font-weight: bolder;
}
.bank-item a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* New centered banner image styling */
.banner {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 20px auto;
  mix-blend-mode: multiply;
}
