body {
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  background: #f7f8fa;
  color: #222;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 100;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #222;
  transition: 0.2s;
}
.nav-links a:hover {
  color: #5c6bff;
}
.hero {
  padding: 150px 40px;
  text-align: center;
}
.title {
  font-weight: 700;
  font-size: 48px;
}
.subtitle {
  font-weight: 600;
  font-size: 20px;
  opacity: 0.8;
}
.content {
  padding: 80px 40px;
}
.service-grid, .staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.service-card, .staff-card {
  padding: 30px;
  background: white;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.2s;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.7s forwards;
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}