/* ===== GLOBAL RESET ===== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fdfdfd;
  color: #333;
}

/* ===== CONTAINER ===== */
.donation-container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

/* ===== HEADER ===== */
h1 {
  font-size: 2.5rem;
  color: #b22222;
  margin-bottom: 5px;
}

.reg {
  font-size: 1rem;
  color: #228b22;
  font-weight: 500;
  margin-bottom: 20px;
}

/* ===== CONTACT ===== */
.contact {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 40px;
}

.contact a {
  color: #0066cc;
  text-decoration: none;
}

/* ===== DONATE EMOTIONAL BADGE ===== */
.donate-badge.custom-message {
  background: #fff0f0;
  padding: 30px;
  border-radius: 15px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.heart-circle {
  background: crimson;
  color: white;
  font-size: 2rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 80px;
  margin: auto;
  font-weight: bold;
}

.message-text {
  font-size: 1.4rem;
  margin-top: 15px;
  color: #b22222;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== BANK SECTION ===== */
.bank-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 30px;
}

/* QR Code */
.qr-code img {
  width: 200px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Bank Text */
.bank-details {
  text-align: left;
  max-width: 400px;
}

.bank-details h2 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 15px;
}

.bank-details p {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .bank-section {
    flex-direction: column;
    align-items: center;
  }

  .bank-details {
    text-align: center;
  }
}
