/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

.donate-page {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  color: #d42027;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

/* Grid layout */
.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Card styling */
.payment-option {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Brand color tints */
.m-pesa {
  background-color: #d6edd9;
  border-top: 4px solid #43b02a;
}

.paypal {
  background-color: #dceeff;
  border-top: 4px solid #0070ba;
}

.bank-transfer {
  background-color: #e0e3e7;
  border-top: 4px solid #333333;
}

/* Images */
.payment-option img {
  max-width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: #d42027;
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #aa1a20;
}

.payment-option h2 {
  color: #222;
  margin-bottom: 0.5rem;
}

.payment-option p {
  margin: 0.4rem 0;
}
