body {
  font-family: 'Inter', sans-serif;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  color: #000;
  background: #fff;
}

/* ===== LOGO STYLES ===== */
.logo {
    margin: 15px 0;
    text-align: center;
}
  
.logo-image {
    max-width: 300px; /* Adjust based on your logo size */
    height: auto;
    display: block;
    margin: 0 auto;
}
  
/* Adjust header spacing if needed */
header {
    margin-bottom: 30px;
}

header {
  margin-bottom: 40px;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.05em;
}

h2, h3 {
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 1.8rem;
  margin-top: 60px;
}

h3 {
  font-size: 1.2rem;
  margin: 40px 0 0 0;
}

p {
  font-size: 1rem;
  margin: 1em 0;
}

a {
  color: #000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-thickness: 2px;
}

section {
  margin-bottom: 40px;
}

/* ===== PRESERVED DONATION SECTION STYLES ===== */
.donation-section {
  max-width: 800px;
  margin: 40px auto;
  padding-top: 20px;
  text-align: center;
}

.donation-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.donation-option {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  width: 250px;
  transition: transform 0.2s;
}

.donation-option:hover {
  transform: translateY(-5px);
}

.donation-option h3 {
  font-size: 1.3rem;
  margin: 0 0 10px 0;
}

.donation-description {
  font-size: 0.95rem;
  color: #666;
  min-height: 50px;
  margin: 15px 0;
}

.donate-button {
  display: block;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 0;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
}

.donate-button:hover {
  background: #333;
}

footer {
  margin-top: 80px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

footer a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #666;
}

footer a:hover {
  border-bottom: 2px solid #666;
}