body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #e0f2f1; /* Light blueish-green background */
  color: #333; /* Dark grey text for readability */
  line-height: 1.6;
}

header {
  background-color: #a7d7c5; /* Slightly darker blueish-green for header */
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid #77aca2;
}

#company-logo {
  max-width: 150px; /* Adjust as needed */
  margin-bottom: 10px;
}

header h1,
header h2 {
  margin: 5px 0;
  color: #2c3e50; /* Darker, more professional title color */
}

main {
  padding: 20px;
  max-width: 800px;
  margin: 20px auto; /* Center the main content */
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
  margin-bottom: 20px;
}

section h3 {
  color: #4a7c59; /* Greenish tone for section headers */
  border-bottom: 2px solid #e0f2f1;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

#contact-info p {
  margin-bottom: 10px;
}

#services ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

#services li {
  margin-bottom: 8px;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: #a7d7c5;
  color: #2c3e50;
  font-size: 0.9em;
  border-top: 3px solid #77aca2;
  margin-top: 30px;
}

a {
  color: #4a7c59;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
