.hero {
  height: 60vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-content h1 {
  font-size: 2.5rem;
}

.hero-content p {
  font-size: 1.25rem;
}


.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}


.hero-content {
  position: relative;
  z-index: 2;
}

.give-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 30px;
  text-align: center;
}

.purpose-card {
  background: #410046;
  color: white;
  padding: 25px;
  border-radius: 20px;
  height: 100%;
}

/* Pledge Form */
form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #333;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  transition: border-color 0.3s, background-color 0.3s;
}

form input:focus,
form textarea:focus {
  outline: none;
  background-color: #fff;
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.15);
}

form textarea {
  min-height: 100px;
  resize: vertical;
}

form button[type="submit"] {
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
}
