/* General styles for the page */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Header styles */
header {
  background-color: #007BFF;
  color: white;
  padding: 20px;
  text-align: center;
}

header nav ul {
  list-style-type: none;
  padding: 0;
}

header nav ul li {
  display: inline;
  margin-right: 15px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
}

/* Hero section styles */
#hero {
  background-color: #eaf4fc;
  text-align: center;
  padding: 50px;
}

.cta-button {
  background-color: #007BFF;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

/* Services section styles */
#services {
  background-color: white;
  padding: 40px;
}

#services .service {
  margin-bottom: 20px;
}

#services h3 {
  color: #007BFF;
}

/* Contact form styles */
#contact form {
  max-width: 600px;
  margin: 0 auto;
}

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

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

#contact form button {
  background-color: #007BFF;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

/* Footer styles */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
}

footer .social-links a {
  color: white;
  margin: 0 5px;
  text-decoration: none;
}

/* Tablets */
@media (min-width: 601px) {
  nav ul li {
    display: inline;
    margin-right: 15px;
  }
}

/* Desktops and larger screens */
@media (min-width: 901px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
