
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: #fffaf9;
  color: #4a3b3b;
}

header {
  background: #fcecec;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding-left: 0;
}

nav a {
  text-decoration: none;
  color: #a16464;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: #ffe9e9;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: #7a5e5e;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #d88c8c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

section {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #fcecec;
  font-size: 0.9rem;
}
