bodyy {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.header {
  background: linear-gradient(135deg, #c41e3a 0%, #8b1a2e 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.header-logo {
  max-width: 300px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.header h1 {
  font-size: 3em;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
  font-size: 2em;
  margin-top: 15px;
  font-style: italic;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.mission {
  background: #f8f9fa;
  padding: 50px 20px;
  text-align: center;
}

.mission h2 {
  color: #c41e3a;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.mission p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 15px;
  color: #555;
}

.goal-highlight {
  font-weight: bold;
  color: #1e5a8b;
}

.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 50px 20px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
  color: #c41e3a;
  font-size: 1.8em;
  margin-bottom: 15px;
  line-height: 1;
}

.info-card p {
  color: #666;
  font-size: 1.1em;
  line-height: 1.3;
}

.icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.cta-section {
  background: linear-gradient(135deg, #1e5a8b 0%, #0d3d5c 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  justify-items: center;
}

@media (min-width: 800px) {
  .cta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.donate-button {
  display: inline-block;
  background: #c41e3a;
  color: white;
  padding: 18px 40px;
  font-size: 1.3em;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.donate-button:hover {
  background: #a01729;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.qr-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}

.qr-card img {
  width: 250px;
  height: 250px;
  display: block;
  margin: 0 auto 12px;
  background: white;
  padding: 8px;
  border-radius: 8px;
}

.qr-card .caption {
  font-size: 0.95em;
  color: #e6f1f8;
}

.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.footer p {
  margin: 5px 0;
}

.stats-box {
  background: #1e5a8b;
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  display: inline-block;
  /*text-align: left;*/
  max-width: 800px;
}

.stats-box h4 {
  margin-bottom: 10px;
  font-size: 1.5em;
}

.stats-box ul {
  list-style: none;
  padding-left: 0;
}

.stats-box li {
  margin-bottom: 5px;
  font-size: 1.2em;
}

.contact-section {
  padding: 40px 20px;
  background: #f0f0f5;
  text-align: center;
}

.contact-section h2 {
  color: #1e5a8b;
  margin-bottom: 20px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.local-contact {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  max-width: 450px;
  text-align: left;
}

.local-contact h4 {
  color: #c41e3a;
  margin-bottom: 5px;
}

.local-contact p {
  margin: 0;
  font-size: 1em;
}

.goal-tracker {
  background: white;
  max-width: 800px;
  margin: 30px auto;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.goal-tracker h2 {
  text-align: center;
  color: #c41e3a;
  font-size: 2.2em;
  margin-bottom: 25px;
}

.goal-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.3em;
  flex-wrap: wrap;
  gap: 10px;
}

.stat-label {
  color: #555;
  font-weight: 500;
}

.stat-value {
  font-weight: bold;
  color: #1e5a8b;
  font-size: 1.2em;
}

.progress-bar {
  width: 100%;
  height: 50px;
  background: #e0e0e0;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4caf50, #2e7d32);
  transition: width 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.3), transparent );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.progress-text {
  color: white;
  font-weight: bold;
  font-size: 1.1em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.last-updated {
  text-align: center;
  color: #888;
  font-size: 0.95em;
  margin-top: 15px;
  font-style: italic;
}

.milestone-message {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 5px;
  color: #856404;
  font-weight: 500;
}

.goal-reached {
  background: #d4edda;
  border-left-color: #28a745;
  color: #155724;
}

.svg-container {
  width: 200px;
  height: 200px;
}

.svg-image {
  width: 200px;
  height: 200px;
}

