/* Reset & base */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  color: #222;
  background-color: #fafafa;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #111;
}

p {
  margin-top: 0;
  color: #444;
}

/* Layout */
.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 0;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  text-align: center;
  padding: 5rem 0 4rem;
}

header h1 {
  font-size: 2rem;
  letter-spacing: 0.5px;
}

.tagline {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Sections */
section h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.service {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Contact */
#contact {
  text-align: center;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.button:hover {
  background: #444;
}

/* Footer */
footer {
  background: #fff;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
}
