/* Basic reset and styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

header {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 2rem;
}

nav {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.nav-links a {
  margin-left: 1.5rem;
  color: #495057;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #2563eb;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #6c757d;
  border-top: 1px solid #e9ecef;
  background: #fff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 0;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #212529;
}

.hero p {
  font-size: 1.25rem;
  color: #495057;
}

/* Services */
.services {
  margin: 3rem 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: #212529;
}

.service-card p {
  color: #495057;
}

.price {
  margin-top: 0.75rem;
  font-weight: 700;
  color: #2563eb;
}

/* CTA */
.cta {
  text-align: center;
  padding: 3rem 0;
  background: #fff;
  border-radius: 8px;
  margin: 3rem 0;
}

.cta h2 {
  margin-bottom: 0.5rem;
}

.cta p {
  color: #495057;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #1d4ed8;
}

/* Content pages */
.content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.content h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.content p {
  margin-bottom: 1rem;
}

/* Contact */
.contact-info {
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form button {
  margin-top: 0.5rem;
}
