body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #53493e;
}

header {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  border-bottom: 2px solid #53493e;
}

header img {
  height: 200px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

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

section {
  padding: 40px 30px;
}

.hero {
  text-align: center;
  background-color: #f2f2f2;
  padding: 60px 20px;
}

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

.services, .about, .blog, .contact {
  max-width: 900px;
  margin: auto;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input, .contact textarea {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  width: 150px;
  padding: 10px;
  font-weight: bold;
  background-color: #53493e;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f2f2f2;
  border-top: 2px solid #53493e;
}
