/* Reset & Typography */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
a { color: #0066cc; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Navbar */
.navbar {
  display: flex; justify-content: space-between;
  align-items: center; padding: 1rem 2rem;
  background: #fff; position: sticky; top: 0; box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.navbar .logo { font-size: 1.5rem; font-weight: bold; }
.navbar nav a { margin-left: 1.5rem; font-size: .95rem; }

/* Hero */
#hero {
  text-align: center; padding: 4rem 2rem;
  background: #f3f3f3;
}
#hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
#hero .btn {
  display: inline-block; margin-top: 1.5rem;
  padding: .75rem 1.5rem; background: #0066cc;
  color: #fff; border-radius: 4px;
}

/* Cards */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1rem; padding: 2rem;
}
.card {
  background: #fff; padding: 1.5rem;
  border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.card h3 { margin-bottom: .5rem; }
.card p { margin-bottom: 1rem; line-height: 1.4; }

/* Sections */
section { padding: 3rem 2rem; }
#about, #how, #faq { background: #fafafa; }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step strong { font-size: 1.25rem; display: block; margin-bottom: .5rem; }
@media (min-width: 600px) {
  .steps { flex-direction: row; justify-content: space-between; }
  .step { width: 30%; }
}

/* Testimonials */
#testimonials { background: #fff; }
#testimonials blockquote {
  margin: 1rem 0; padding-left: 1rem;
  border-left: 4px solid #0066cc;
  font-style: italic;
}

/* FAQ */
#faq dl dt { font-weight: bold; margin-top: 1rem; }
#faq dl dd { margin-left: 1rem; margin-bottom: .5rem; }

/* Locations */
#locations .loc {
  margin-bottom: 2rem;
}
#locations h3 { font-size: 1.25rem; margin-bottom: .3rem; }

/* Footer */
footer {
  text-align: center; background: #f3f3f3;
  padding: 2rem 1rem; font-size: .9rem;
}
