body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8fafc;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2563eb;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #2563eb;
}
.hero {
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.highlight {
  color: #2563eb;
}
.projects {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.projects h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.project-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 1.5rem;
  width: 300px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}
.project-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px rgba(37,99,235,0.10);
}
.project-link {
  display: inline-block;
  margin-top: 1rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.project-link:hover {
  color: #1e40af;
}
footer {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  color: #888;
  font-size: 1rem;
} 