.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

#donate-hero {
  background: linear-gradient(135deg, #f0e6d2, #e0c8a1);
  padding: 60px 0;
  text-align: center;
}

#donate-hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: "Lora", serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
#donate-hero p {
  font-size: 1.1rem;
}

#donation-details {
  padding: 60px 0;
}
#donation-details h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Lora", serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.donation-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.bank-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}
.bank-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease-in-out;
  flex-basis: calc(50% - 15px);
  box-sizing: border-box;
}

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

.bank-card img {
  max-width: 150px;
  height: auto;
  margin-right: 20px;
}

.bank-card h3 {
  font-family: "Lora", serif;
  margin-bottom: 10px;
  text-align: left;
}
.bank-details p {
  margin-bottom: 5px;
  font-size: 1.1rem;
  text-align: left;
}
.bank-details {
  flex: 1;
}
.qr-code {
  width: 100px;
  height: 100px;
  margin-left: 20px;
}

.thank-you {
  text-align: center;
  margin-top: 40px;
  font-size: 1.3rem; 
  color: #e9770d;
  font-weight: bold; 
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.thank-you:hover {
  transform: scale(1.05);
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .bank-grid {
    flex-direction: column;
    align-items: center;
  }
  .bank-card {
    flex-basis: auto;
    width: 90%;
    flex-direction: column;
    text-align: center;
  }
  .bank-card img {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .bank-details {
    text-align: center;
  }
  .qr-code {
    margin-left: 0;
    margin-top: 10px;
  }
  .bank-card h3,
  .bank-card p {
    text-align: center;
  }
}
