body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f7fa;
  color: #222;
}
.hero {
  background: linear-gradient(to right, #0a2540, #1a72e8);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta-button, .deposit-link, .contact button {
  background: #ffd700;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}
.status {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.balance {
  margin-top: 20px;
  font-size: 1.2em;
}
.progress-container {
  background: #eee;
  border-radius: 20px;
  margin: 15px 0;
}
.progress-bar {
  height: 20px;
  width: 0;
  background: #1a72e8;
  border-radius: 20px;
  transition: width 0.5s ease;
}
.contact {
  padding: 40px 20px;
  max-width: 500px;
  margin: 40px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
footer {
  text-align: center;
  padding: 20px;
  background: #eaeaea;
  font-size: 0.9em;
  margin-top: 40px;
}