/* Global styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

/* Header styles */
header {
  background-color: #676ab5;
  padding: 20px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

nav li {
  margin-left: 20px;
}

nav a {
  color: #f5f5f5;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

/* Hero image styles */
.hero-image {
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

/* Main content styles */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

section {
  margin-bottom: 40px;
}

section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li {
  margin-bottom: 10px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 10px;
}

/* Get started section styles */
#get-started {
  background-color: #676ab5;
  padding: 40px;
  text-align: center;
}

#get-started h2 {
  margin-bottom: 20px;
}

#get-started form {
  max-width: 600px;
  margin: 0 auto;
}

#get-started label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

#get-started input,
#get-started select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#get-started button[type="submit"] {
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

#get-started button[type="submit"]:hover {
  background-color: #555;
}

/* Footer styles */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}
