/* Donate Section CSS */
.donate {
  background-color: var(--primary-light);
}

.donate-content {
  display: flex;
  gap: 50px;
  margin-bottom: 60px;
}

.donate-content .lead{
  font-weight: 500;
  font-size: 1.4rem;
}

.donate-text {
  flex: 1;
}

.impact-stats {
  margin-top: 0px;
}

.impact-item {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.impact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.impact-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
}

.impact-label {
  color: var(--gray-700);
}

.donate-form-container {
  flex: 1;
}

.donate-form {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.donate-form h3 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--primary-dark);
}

.amount-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.amount-options input[type="radio"] {
  display: none;
}

.amount-options label {
  flex: 1;
  min-width: 60px;
  text-align: center;
  padding: 10px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.amount-options input[type="radio"]:checked + label {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.other-amount {
  display: none;
  margin-top: 15px;
}

.other-amount.active {
  display: block;
}

.donate-button {
  margin-top: 10px;
  background-color: var(--accent);
}

.donate-button:hover {
  background-color: var(--accent-dark);
}

.sponsors {
  margin-top: 60px;
}

.sponsors h3 {
  text-align: center;
  margin-bottom: 30px;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.sponsor-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
  /* filter: grayscale(100%); */
}

.sponsor-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.sponsor-logo img {
  max-height: 100%;
  max-width: 150px;
}

@media (max-width: 992px) {
  .donate-content {
    flex-direction: column;
    margin: 0 !important;
  }
  
  .donate-text, .donate-form-container {
    /* width: 100%; */
  }
}

@media (max-width: 576px) {
  .amount-options {
    flex-direction: column;
  }
  
  .amount-options label {
    width: 100%;
  }
  
  .sponsors-grid {
    gap: 20px;
  }
  
  .sponsor-logo {
    height: 60px;
  }
}