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

header {
  background: #004aad;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

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

.hero {
  background: #007bff;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #00b894;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
}

.services, .about, .contact {
  padding: 2rem;
  background: white;
  margin: 1rem;
  border-radius: 8px;
}

.services ul {
  list-style: disc;
  margin-left: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.75rem;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #004aad;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #ddd;
}
