
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #fefcf9;
  color: #2d2d2d;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logo {
  height: 50px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}
nav ul li a {
  text-decoration: none;
  color: #2d2d2d;
  font-weight: bold;
}
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(to bottom right, #f9f3ec, #fff);
}
footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
}
