body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #fff7ed, #fed7aa);
}

.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.card {
  width: 100%;
  max-width: 950px;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.header {
  background: linear-gradient(to right, #b45309, #ea580c);
  color: white;
  text-align: center;
  padding: 40px;
}

.header h1 {
  margin: 0;
  font-size: 50px;
}

.header p {
  margin-top: 10px;
  font-size: 18px;
}

.content {
  padding: 40px;
}

.title {
  text-align: center;
}

.title h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.title p {
  color: #555;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  font-weight: bold;
}

.progress-bar {
  width: 100%;
  height: 30px;
  background: #ddd;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, #22c55e, #059669);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: width 0.5s ease;
}

.update-note {
  margin-top: 10px;
  font-size: 13px;
  color: #6b7280;
  text-align: right;
  font-style: italic;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  padding: 25px;
  border-radius: 20px;
  text-align: center;
}

.target {
  background: #fffbeb;
}

.raised {
  background: #ecfdf5;
}

.remaining {
  background: #fef2f2;
}

.stat-card h3 {
  font-size: 36px;
  margin-top: 10px;
}

.cta {
  margin-top: 40px;
  background: linear-gradient(to right, #ffedd5, #fef3c7);
  padding: 35px;
  border-radius: 25px;
  text-align: center;
}

.cta h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.minimum-donation {
  font-size: 18px;
  margin-bottom: 25px;
}

.donation-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.qr-code {
  width: 220px;
  height: 220px;
  object-fit: contain;
  background: white;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bank-details {
  background: rgba(255,255,255,0.7);
  padding: 25px;
  border-radius: 20px;
  text-align: left;
}

.bank-details h4 {
  margin-top: 0;
  color: #b45309;
  font-size: 26px;
}

.bank-details p {
  margin: 10px 0;
  color: #444;
  font-size: 16px;
}

.cta a {
  text-decoration: none;
}

.cta button {
  margin-top: 10px;
  background: linear-gradient(to right, #b45309, #ea580c);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 999px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.cta button:hover {
  transform: scale(1.05);
}

.footer {
  text-align: center;
  margin-top: 30px;
  color: gray;
  font-size: 15px;
}

@media (max-width: 768px) {

  .header h1 {
    font-size: 36px;
  }

  .title h2 {
    font-size: 28px;
  }

  .cta h3 {
    font-size: 24px;
  }

  .content {
    padding: 20px;
  }

  .progress-info {
    flex-direction: column;
    gap: 10px;
  }

}