.giving-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 2rem;
  text-align: center;
}

.giving-page h1 {
  color: #800000;
  font-size: 2.9rem;
  margin-bottom: 1.5rem;
  margin-top: 0rem;
}

.giving-page p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.giving-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.giving-method {
  flex: 1 1 200px;
  max-width: 260px; /* card size */
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.giving-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.giving-method img {
  width: 200px;/* Icon size */
  height: auto;
  margin-bottom: 1rem;
}

.cashapp-tag {
  font-size: 1.1rem;
  color: #800000;
  font-weight: bold;
  margin-top: 0.5rem;
}

iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.giving-method p {
  margin-top: 0.5rem;
  color: #444;
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .giving-methods {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .giving-method {
    width: 80%;
    max-width: 350px;
    padding: 1.0rem;
  }

  .giving-method img {
    width: 150px;
    margin-bottom: 0.75rem;
  }

  .giving-method p {
    font-size: 1rem;
  }

  .cashapp-tag {
    font-size: 1rem;
    margin-top: 0.3rem;
  }
}
.giving-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.giving-method {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 2rem;
  width: 250px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.giving-method:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.giving-method img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.giving-method p {
  font-size: 1rem;
  color: #555;
  margin: 0.5rem 0;
}
