body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f0f8ff;
  color: #003366;
}

header {
  background: #0099cc;
  color: white;
  padding: 2rem;
  text-align: center;
}

.services, .contact {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.services ul {
  list-style-type: square;
  padding-left: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin-top: 1rem;
}

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

button {
  background: #0099cc;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0077aa;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #003366;
  color: white;
  margin-top: 2rem;
}
