/* Global */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #fafafa;
  color: #222;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: #000;
  color: #fff;
  padding: 6rem 1rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.cta-button {
  background: #fff;
  color: #000;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

/* Main Content */
main {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}

h2 {
  margin-top: 2rem;
  font-size: 1.8rem;
}

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

.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.service-card h3 {
  margin-top: 0;
}

/* Contact */
.contact {
  text-align: center;
  margin-top: 3rem;
}

.contact a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
  background: #eee;
}
