/* Hero Section for Donate Page */
.hero-section {
  background-image: url('https://www.altruisticgaming.org/assets/donate-hero-background.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-section .overlay {
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-section div {
  position: absolute;
  z-index: 2;
  top: 7%;
  left: 15%;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.hero-section h1 {
  font-size: 3rem;
  color: #f5f5f5;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 1rem;
  margin-top: 10px;
  color: #f5f5f5;
}

/* Donation Options Grid */
.donation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}

.donation-card {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: white;
  border: 1px solid #3EE0F5;
}

.donation-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.donation-card p {
  font-size: 16px;
  margin-bottom: 20px;
}

.donation-card button {
  background-color: #3EE0F5;
  padding: 10px 20px;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.donation-card button:hover {
  background-color: #2bb3d9;
}

/* Impact Section */
.impact-section {
  background-color: #282828;
  padding: 40px;
  color: white;
  text-align: center;
}

.impact-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.impact-icons {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.impact-icons img {
  width: 80px;
  height: 80px;
}