
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #fff;
  color: #333;
}
.header {
  background-color: #2563eb;
  color: white;
  padding: 2rem;
  text-align: center;
}
.intro, .consultation, .projects {
  padding: 2rem;
  text-align: center;
}
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}
.card {
  background: white;
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 1rem;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.consultation a {
  display: inline-block;
  background-color: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  text-decoration: none;
  margin-top: 1rem;
}
.consultation a:hover {
  background-color: #1e40af;
}
.footer {
  background-color: #2563eb;
  color: white;
  text-align: center;
  padding: 1.5rem;
}
.footer .small {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
