input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

input:focus {
  border-color: #6c3483;
  outline: none;
  box-shadow: 0 0 5px rgba(108, 52, 131, 0.5);
}

button:hover {
  background-color: #5b2c6f;
}

/* Donate page styling */

.donate-hero {
  text-align: center;
  margin-bottom: 40px;
}

.donate-hero h1 {
  font-size: 3rem;
  color: #34495e;
  margin-bottom: 10px;
}

.donate-hero .lead {
  font-size: 1.4rem;
  color: #6c757d;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.donate-hero img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(52, 73, 94, 0.15);
}

.donate-info, .donate-methods, .donate-form-section, .donate-thankyou {
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 0 15px;
  color: #2c3e50;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.donate-info h2, .donate-methods h2, .donate-form-section h2 {
  color: #2c3e50;
  margin-bottom: 15px;
  border-bottom: 2px solid #e8d8f7;
  padding-bottom: 8px;
}

.donate-methods ul {
  list-style-type: none;
  padding-left: 0;
}

.donate-methods li {
  background: #f9f8fb;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(52, 73, 94, 0.05);
}

.donate-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.donate-form input[type="text"],
.donate-form input[type="email"],
.donate-form input[type="number"],
.donate-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border-radius: 6px;
  border: 1px solid #ced4da;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.donate-form textarea {
  height: 100px;
}

.donate-form button {
  background-color: #34495e;
  color: #ecdbfa;
  border: none;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.donate-form button:hover {
  background-color: #2c3e50;
}

.donate-thankyou h3 {
  color: #6f42c1;
  text-align: center;
  margin-bottom: 10px;
}

.donate-thankyou p {
  text-align: center;
  font-style: italic;
  color: #4b0082;
}
/* Extended donate page styling */

.donate-welcome, .donate-impact, .donate-stories, .donate-faq, .donate-cta-banner {
  max-width: 700px;
  margin: 50px auto;
  padding: 0 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c3e50;
}

.impact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 20px;
}

.impact-cards .card {
  flex: 1 1 200px;
  background: #f7f4fb;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(52, 73, 94, 0.1);
  transition: transform 0.3s ease;
}

.impact-cards .card:hover {
  transform: translateY(-8px);
}

.impact-cards .card h3 {
  margin-top: 15px;
  color: #6f42c1;
}

.donate-stories article {
  background: #eef0f7;
  padding: 20px 30px;
  margin-bottom: 25px;
  border-radius: 12px;
  font-style: italic;
  box-shadow: 0 2px 8px rgba(52, 73, 94, 0.08);
  color: #555;
}

.donate-stories blockquote {
  quotes: "“" "”" "‘" "’";
  font-size: 1.1rem;
}

.donate-stories blockquote:before {
  content: open-quote;
  font-size: 3rem;
  color: #a291c7;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 10px;
}

.donate-stories strong {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  color: #3c2e69;
}

.donate-faq details {
  background: #f4f3fa;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 18px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(52, 73, 94, 0.1);
}

.donate-faq summary {
  font-weight: 600;
  font-size: 1.1rem;
  color: #54478c;
}

.donate-cta-banner {
  background-color: #6f42c1;
  color: white;
  padding: 35px 20px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0 8px 20px rgba(111, 66, 193, 0.4);
}

.donate-cta-banner h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.donate-cta-banner p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.donate-cta-banner .btn-primary {
  background-color: #2e1051;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.donate-cta-banner .btn-primary:hover {
  background-color: #4c2c91;
}

/* Responsive */
@media (max-width: 768px) {
  .impact-cards {
    flex-direction: column;
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}
.fade-delay-1 { transition-delay: 0.2s; }
.fade-delay-2 { transition-delay: 0.4s; }
.fade-delay-3 { transition-delay: 0.6s; }
.fade-delay-4 { transition-delay: 0.8s; }
.fade-delay-5 { transition-delay: 1s; }

/* Cards grid container */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row on desktop */
  gap: 20px;
}

.card {
  background: #f7f4fb;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(52, 73, 94, 0.1);
  transition: transform 0.3s ease;
}

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

/* Mobile: stack cards vertically */
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr; /* 1 card per row */
  }
}



