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

/* Header */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  border-bottom: 1px solid #e8e8e8;
}
header .logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1.25rem;
}
header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 0.4rem;
}
header p { color: #666; font-size: 1.05rem; }

/* Sections */
section#services,
section#contact {
  max-width: 680px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
  width: 100%;
}

section#services h2,
section#contact h2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8e8e8;
}

section#services p {
  color: #555;
  margin-bottom: 1rem;
}

section#services ul {
  list-style: disc;
  padding-left: 1.25rem;
}
section#services li {
  margin-bottom: 0.4rem;
  color: #333;
}

/* Contact */
.contact-list {
  list-style: none;
}
.contact-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}
.contact-list li:last-child {
  border-bottom: none;
}
.contact-list a {
  color: #1a6fba;
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.hours {
  margin-top: 1rem;
  color: #666;
  font-size: 0.9rem;
}

/* Footer */
footer {
  margin-top: auto;
  background: #f7f7f7;
  border-top: 1px solid #e8e8e8;
  color: #888;
  text-align: center;
  padding: 1.25rem;
}
footer p { font-size: 0.85rem; }
