/* General styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  background: linear-gradient(90deg, #0056b3, #007bff);
  color: white;
  text-align: center;
  padding: 60px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  margin: 0;
}

nav {
  display: flex;
  justify-content: center;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

nav a {
  margin: 0 15px;
  color: #0056b3;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #007bff;
}

/* Section styles */
section {
  padding: 40px 20px;
}

#services, #testimonials {
  background: white;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#services h2, #testimonials h2 {
  text-align: center;
  color: #0056b3;
  margin-bottom: 20px;
}

.service {
  margin: 20px 0;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

blockquote {
  margin: 20px;
  padding: 20px;
  background: #f4f4f4;
  border-left: 5px solid #0056b3;
  border-radius: 5px;
}

form {
  max-width: 600px;
  margin: 20px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

form input, form textarea, form button {
  width: 80%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

form button {
  background: #0056b3;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #003f8c;
}

/* Footer styles */
footer {
  text-align: center;
  background: #222;
  color: white;
  padding: 20px 0;
  margin-top: 20px;
}