/* Font & Base */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

h1, h2 {
  font-weight: 600;
  color: #111;
}

p, li {
  font-size: 1rem;
  color: #444;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero {
  background: #f5f8ff;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  background: #2d6cdf;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.cta:hover {
  background: #1f4cad;
}

/* Sections */
.services, .case-study, .contact {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  margin: 0.5rem 0;
}

/* Footer */
footer {
  background: #f0f0f0;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
}
