body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #f9f9f9;
}

header {
  background: #004d40;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

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

.hero {
  background: url('relocate-hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.cta-button {
  display: inline-block;
  background: #009688;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 20px;
  border-radius: 5px;
}

section {
  padding: 40px 20px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contractor-list {
  max-width: 600px;
  margin: auto;
  padding: 0;
  list-style: none;
}

.contractor-list li {
  background: white;
  margin: 5px 0;
  padding: 10px;
  border-radius: 4px;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  padding: 10px;
  background: #004d40;
  color: white;
  border: none;
  border-radius: 4px;
}

footer {
  text-align: center;
  background: #004d40;
  color: white;
  padding: 10px 20px;
  margin-top: 40px;
}
