#fw-section-donations-1750066827 {

/* Whole section */
.donation-section {
  max-width: 500px;
  margin: 40px auto;
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-family: "Inter", sans-serif;
  text-align: center;
}

/* Heading */
.donation-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.donation-section p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Input fields */
.donation-section input[type="text"],
.donation-section input[type="number"],
.donation-section textarea {
  width: 100%;
  padding: 12px 14px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.donation-section input:focus,
.donation-section textarea:focus {
  border-color: #ff4fa3;
  outline: none;
  box-shadow: 0 0 6px rgba(255,79,163,0.3);
}

/* Donation options */
.donation-options {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 15px 0;
}

.donation-options button {
  padding: 12px 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.donation-options button:hover {
  background: #ffedf7;
  border-color: #ff4fa3;
  color: #ff4fa3;
}

/* Active option (selected) */
.donation-options .active {
  background: #ff4fa3;
  color: #fff;
  border-color: #ff4fa3;
}

/* Submit button */
.donation-section .donate-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff4fa3, #ff72c7);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.donation-section .donate-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
}