body {
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0;
  color: #333;
  background-color: #f9f9f9;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #154360;
  color: white;
  padding: 1em 2em;
}

.logo span { color: #60c1c5; }

nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-weight: 500;
}

nav a.active, nav a:hover {
  text-decoration: underline;
  color: #a4ecf3;
}

.hero {
  text-align: center;
  background: linear-gradient(135deg, #60c1c5, #154360);
  color: white;
  padding: 5em 2em;
}

.search input {
  padding: 10px;
  width: 200px;
  margin-right: 8px;
}
.search button {
  padding: 10px 16px;
  background: #154360;
  color: white;
  border: none;
  cursor: pointer;
}

.info {
  padding: 3em 2em;
  background: white;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: space-around;
  margin-top: 2em;
}

.steps div {
  width: 30%;
  background-color: #eef7f8;
  padding: 1em;
  border-radius: 5px;
}

footer {
  text-align: center;
  background: #154360;
  color: white;
  padding: 1em 0;
  margin-top: 2em;
}

.shops-list, .jobs, .messages {
  padding: 2em;
}

.shop, .job {
  background: #fff;
  padding: 1.2em;
  border-radius: 6px;
  margin-bottom: 1em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.chat-window {
  background: white;
  padding: 1em;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.logo img {
  height: 50px;        /* adjust as needed */
  vertical-align: middle;
}
