@import url(../components/config.css);
.donation-page {
  background: #ffffff;
  color: #102a43;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.donation-hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #f4fbff 0%, #eefbf4 100%);
}

.donation-hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #0f8a6a;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.donation-hero h1,
.section-heading h2,
.donation-info h2,
.donation-trust h2,
.donation-final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: #0b2545;
}

.donation-hero p,
.section-heading p,
.donation-info p,
.donation-trust p,
.donation-final-cta p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #486581;
  max-width: 650px;
}

.donation-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn,
.donation-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.primary-btn,
.donation-submit-btn {
  background: #0f8a6a;
  color: #ffffff;
}

.secondary-btn {
  background: #ffffff;
  color: #0b2545;
  border: 1px solid #d9e2ec;
}

.donation-hero-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(16, 42, 67, 0.14);
}

.donation-impact,
.donation-form-section,
.donation-trust,
.donation-final-cta {
  padding: 85px 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.section-heading p {
  margin: 0 auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.impact-card {
  padding: 30px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e6eef5;
  box-shadow: 0 16px 45px rgba(16, 42, 67, 0.08);
}

.impact-card h3 {
  font-size: 2rem;
  color: #0f8a6a;
  margin-bottom: 12px;
}

.impact-card p {
  color: #486581;
  line-height: 1.7;
}

.donation-form-section {
  background: #f7fafc;
}

.donation-form-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.donation-info ul {
  margin-top: 25px;
  padding-left: 20px;
  color: #334e68;
  line-height: 2;
}

.donation-form {
  background: #ffffff;
  padding: 36px;
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(16, 42, 67, 0.1);
  border: 1px solid #e6eef5;
}

.amount-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.amount-options button {
  padding: 13px;
  border-radius: 14px;
  border: 1px solid #d9e2ec;
  background: #f8fbfd;
  font-weight: 700;
  color: #0b2545;
  cursor: pointer;
}

.amount-options button:hover {
  background: #0f8a6a;
  color: #ffffff;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #243b53;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #d9e2ec;
  font-size: 1rem;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #0f8a6a;
}

.donation-submit-btn {
  width: 100%;
  margin-top: 10px;
  font-size: 1rem;
}

.secure-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #627d98;
  line-height: 1.6;
  text-align: center;
}

.trust-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.trust-grid div {
  padding: 24px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e6eef5;
  font-weight: 700;
  color: #0b2545;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.07);
}

.donation-final-cta {
  text-align: center;
  background: linear-gradient(135deg, #0b2545 0%, #0f8a6a 100%);
}

.donation-final-cta h2,
.donation-final-cta p {
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
}

.donation-final-cta .primary-btn {
  margin-top: 24px;
  background: #ffffff;
  color: #0b2545;
}

@media (max-width: 900px) {
  .donation-hero-wrapper,
  .donation-form-wrapper,
  .trust-wrapper {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .donation-hero {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .impact-grid,
  .trust-grid,
  .amount-options {
    grid-template-columns: 1fr;
  }

  .donation-form {
    padding: 24px;
  }

  .donation-hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }
}