body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #efe3dc;
  color: #5a1e00;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #f6d94f;
  border-bottom: 4px solid #5a1e00;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  color: #5a1e00;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.button {
  background: #f6d94f;
  padding: 12px 24px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  border: 3px solid #5a1e00;
  box-shadow: 4px 4px #5a1e00;
}

.features {
  display: flex;
  gap: 20px;
  padding: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 20px;
  border: 3px solid #5a1e00;
  width: 250px;
  box-shadow: 6px 6px #5a1e00;
}

.cta {
  text-align: center;
  padding: 60px;
  background: #f6d94f;
  border-top: 4px solid #5a1e00;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #f6d94f;
  border-bottom: 4px solid #5a1e00;
}

.logo-img {
  height: 60px;
}