body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}
header {
  text-align: center;
  background: #1e1e1e;
  color: white;
  padding: 2em;
}
.logo {
  max-width: 150px;
}
.cta-button {
  background: #f4d03f;
  padding: 10px 20px;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}
main {
  padding: 2em;
}
.service, .testimonial {
  background: white;
  border-left: 5px solid #1e1e1e;
  margin: 1em 0;
  padding: 1em;
}
.contact form {
  background: white;
  padding: 1em;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.contact input, .contact textarea {
  margin-bottom: 1em;
  padding: 0.5em;
  font-size: 1em;
}
.contact button {
  background-color: #1e1e1e;
  color: white;
  padding: 0.75em;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
footer {
  background: #1e1e1e;
  color: white;
  text-align: center;
  padding: 1em;
}