body {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fff;
  color: #333;
}

header {
  padding: 30px 0 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
}

nav {
  margin-top: 15px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
}

.centered {
  text-align: center;
}

h1, h2, h3 {
  font-family: verdana, sans-serif;
  color: #222;
}

p, nav a {
  font-family: verdana, sans-serif;
}

h1 {
  font-size: 1.8em;
  margin-bottom: 5px;
}

h2 {
  font-size: 1.3em;
  border-bottom: 2px solid #FFA500;
  padding-bottom: 6px;
  display: inline-block;
}

.hero {
  margin-bottom: 50px;
}

.tagline {
  font-size: 1.1em;
  color: #666;
}

section {
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.service-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px;
}

.service-card h3 {
  margin-top: 0;
  font-size: 1em;
  color: #FFA500;
}

.service-card p {
  font-size: 0.9em;
  color: #555;
  line-height: 1.5;
}

.education-section {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 50px;
}

.education-section p {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 15px;
}

.education-section .donation-note {
  margin-top: 5px;
}

footer {
  border-top: 1px solid #eee;
  padding: 20px 0;
  margin-top: 30px;
}

footer p {
  font-size: 0.85em;
  color: #999;
}

a:link { color: #FFA500; }
a:visited { color: #FF8C00; }
a:hover, a:focus { color: #FF7F50; }
a:active { color: #FF4500; }
