/* Reset some default styling */
body, h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Basic styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

header, footer, section {
  padding: 20px;
}

header {
  background-color: #f4f4f4;
  text-align: center;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
}

.services, .about, .contact-form {
  margin: 20px auto;
  max-width: 600px;
}

.contact-form label {
  display: block;
  margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #555;
}