/* ---------- DONATE SECTION ---------- */
.section-donate {
  /* Background intentionally not set — inherits whatever the page/section around it defines. */
  padding: 64px 0 80px;
  text-align: center;
  position: relative;
}
.section-donate .wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.donate-heading {
  font-family: "komet", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 8vw, 56px);
  color: #2A4E7A;
  letter-spacing: 0.02em;
  line-height: 1.0;
  margin-bottom: 12px;
}
.donate-heading2 {
  font-family: "komet", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #2A4E7A;
  margin-bottom: 16px;
  line-height: 1.3;
}
.subtitle {
  font-family: "komet", sans-serif;
  font-size: 18px;
  font-style: italic;
  color: #2A2A2A;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.donate-amounts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto 32px;
}
.donate-btn {
  height: 56px;
  min-width: 0;
  padding: 0 20px;
  background: #fff !important;
  color: #2A4E7A !important;
  border: 3px solid #2A4E7A !important;
  border-radius: 0;
  font-family: "komet", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.04em;
  box-shadow: 4px 4px 0 rgba(42,78,122,0.15);
  transition: all 0.2s;
  cursor: pointer;
}
.donate-btn:hover,
.donate-btn.selected {
  background: #C8353E !important;
  color: #fff !important;
  border-color: #C8353E !important;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(200,53,62,0.3);
}
.btn-donate-now {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  height: 56px;
  line-height: 56px;
  background: #C8353E !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0;
  font-family: "komet", sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 0 rgba(26,113,229,0.25);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.btn-donate-now:hover {
  background: #1A71E5 !important;
  transform: translateY(-4px);
  box-shadow: 0 10px 0 rgba(26,113,229,0.3);
  color: #fff !important;
}
