/* Reset + basics */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f4f4f4;
  text-align: center;
  padding: 2rem;
}
header .logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}
header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
header p  { color: #666; font-size: 1.2rem; }

/* Services */
section#services {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
}
section#services h2 {
  font-size: 1.8rem;
  color: #444;
  margin-bottom: 0.75rem;
}
section#services p {
  margin-bottom: 1rem;
}
section#services ul {
  list-style: disc inside;
  margin-left: 1rem;
}
section#services li {
  margin-bottom: 0.5rem;
}

/* Contact */
section#contact {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
}
section#contact h2 {
  font-size: 1.8rem;
  color: #444;
  margin-bottom: 0.75rem;
}
.contact-list {
  list-style: none;
}
.contact-list li {
  margin-bottom: 0.5rem;
}
.contact-list a {
  color: #007acc;
  text-decoration: none;
}
.hours {
  margin-top: 1rem;
  font-style: italic;
}

/* Footer */
footer {
  margin-top: auto;
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
footer p { font-size: 0.9rem; }