* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

body {
  display:flex;
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 1rem 1.5rem;
}

.logo a {
	text-decoration: none;
}

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

.navbar .logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo .primary {
  color: #333;
}

.logo .accent {
  color: #0070f3;
}

.navbar nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #0070f3;
}

main {
  flex: 1;
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;

}

h1, h2 {
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

ul.services {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  ul.services {
    grid-template-columns: 1fr 1fr;
  }
}

ul.services li {
  background: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  font-size: 1.1rem;
}

ul.services li a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 1rem;
  transition: background 0.3s, color 0.3s;
}

ul.services li a:hover {
  background: #f0f0f0;
  color: #0070f3;
}

a.button {
  display: inline-block;
  background: #0070f3;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  margin-top: 2rem;
}

a.button:hover {
  background: #0059c9;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #ffffff;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #777;
}
