* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #1a1a2e; line-height: 1.6; }
.container { max-width: 800px; margin: 0 auto; padding: 0 24px; }

.hero {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%);
  color: #fff;
  padding: 60px 0 50px;
  text-align: center;
}
.logo { font-size: 48px; margin-bottom: 8px; }
h1 { font-size: 36px; font-weight: 700; margin-bottom: 8px; }
.tagline { font-size: 16px; opacity: 0.85; margin-bottom: 32px; }

.verse-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 600px;
  margin: 0 auto;
}
.verse-text { font-size: 22px; font-style: italic; line-height: 1.7; margin-bottom: 10px; }
.verse-ref { font-size: 14px; opacity: 0.75; font-style: normal; font-weight: 600; }

.section {
  padding: 50px 0;
  background: #f8faf9;
}
.two-col { display: flex; gap: 40px; }
.col { flex: 1; }
h2 { font-size: 22px; margin-bottom: 16px; color: #1b4332; }
.col p { color: #444; margin-bottom: 20px; font-size: 15px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #555; margin-bottom: 4px; }
.form-group input {
  width: 100%; padding: 12px 14px; border: 1px solid #d4d4d4; border-radius: 8px;
  font-size: 15px; transition: border-color 0.2s;
}
.form-group input:focus { outline: none; border-color: #2d6a4f; box-shadow: 0 0 0 3px rgba(45,106,79,0.12); }
.btn {
  display: inline-block; padding: 12px 28px; border: none; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.btn-primary { background: #2d6a4f; color: #fff; }
.btn-primary:hover { background: #1b4332; }
.btn-primary:disabled { background: #94b8a7; cursor: not-allowed; }

.feedback {
  margin-top: 16px; padding: 12px 16px; border-radius: 8px;
  font-size: 14px; display: none;
}
.feedback.success { display: block; background: #d3f9d8; color: #2b8a3e; }
.feedback.error { display: block; background: #ffe3e3; color: #c92a2a; }

.steps { list-style: none; margin-bottom: 24px; }
.steps li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid #e8eceb; font-size: 14px; color: #444;
}
.step-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: #2d6a4f; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.info-box {
  background: #e8f5e9; border-radius: 12px; padding: 20px; font-size: 14px; color: #2d6a4f;
}
.info-box strong { display: block; margin-bottom: 6px; }

.donate-section { background: linear-gradient(135deg, #f8faf9, #e8f5e9); padding: 40px 0; border-top: 2px solid #2d6a4f20; }
footer {
  background: #1a1a2e; color: rgba(255,255,255,0.6); text-align: center;
  padding: 24px 0; font-size: 13px;
}

@media (max-width: 640px) {
  .hero { padding: 40px 0 32px; }
  h1 { font-size: 28px; }
  .verse-text { font-size: 18px; }
  .two-col { flex-direction: column; gap: 32px; }
}
