.donate-section {
  margin-top: 0;
  padding: 34px 0 28px;
}

.donate-header {
  background: linear-gradient(135deg, #fbfde9 0%, #f7f9f1 100%);
  border-radius: 16px;
  padding: 42px 24px;
}

.donate-kicker {
  color: #6f8500;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.donate-header h1 {
  color: #313a44;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 0;
}

.donate-text {
  color: #515b64;
  font-size: 17px;
  line-height: 1.7;
  margin: 16px auto 0;
  max-width: 660px;
}

.donate-notes {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.donate-note {
  align-items: center;
  background: linear-gradient(135deg, #fbfde9 0%, #f7f9f1 100%);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(49, 58, 68, 0.07);
  color: #515b64;
  display: flex;
  gap: 12px;
  padding: 16px;
}

.donate-note i {
  align-items: center;
  background-color: #cbeb00;
  border-radius: 50%;
  color: #313a44;
  display: inline-flex;
  flex: 0 0 38px;
  font-size: 18px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.donate-note span {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
}

.donation-grid {
  margin-top: 24px;
}

.donation-card {
  background: linear-gradient(135deg, #fbfde9 0%, #f7f9f1 100%);
  border: 1px solid rgba(49, 58, 68, 0.08);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(49, 58, 68, 0.08);
  height: 100%;
  padding: 30px 22px;
  text-align: center;
}

.donation-card h4 {
  color: #313a44;
  font-weight: 800;
  margin-bottom: 8px;
}

.donate-option {
  align-items: center;
  border: 1px solid rgba(49, 58, 68, 0.2);
  border-radius: 999px;
  color: #313a44;
  display: inline-flex;
  justify-content: center;
  min-height: 52px;
  padding: 10px 12px;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.donate-option:hover {
  background-color: rgba(203, 235, 0, 0.16);
  border-color: #cbeb00;
  color: #313a44;
  transform: translateY(-1px);
}

.recommended {
  background-color: #cbeb00;
  border-color: #cbeb00;
  font-weight: 750;
}

.impact-text {
  font-size: 14px;
  color: #666;
}

.donate-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.donate-footnote {
  color: #515b64;
  font-size: 14px;
  margin: 20px auto 0;
  max-width: 620px;
  text-align: center;
}

/* Tablet */
@media (max-width: 768px) {
  .donate-section {
    padding: 24px 0 24px;
  }

  .donate-header {
    border-radius: 12px;
    padding: 34px 18px;
  }

  .donate-header h1 {
    font-size: 34px;
  }

  .donate-notes {
    grid-template-columns: 1fr;
  }

  .donate-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .donate-options {
    grid-template-columns: 1fr;
  }
}
