<!-- style.css -->
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f9fafb;
  color: #333;
  padding: 0;
  margin: 0;
}

header {
  background: linear-gradient(90deg, #003d73, #0078b8);
  color: white;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  background: linear-gradient(90deg, #003d73, #0078b8);
  color: white;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo {
  height: 50px;
  width: auto;

}

nav {
  margin-top: 15px;
}

nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffd700;
}

main {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
}

.hero {
  background: #eaf4fc;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.services, .about, .contact-form {
  background: white;
  margin-top: 30px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.services h3, .about h3, .contact-form h2 {
  color: #003d73;
  margin-bottom: 20px;
}

ul li {
  margin: 10px 0;
  font-size: 1.1rem;
}

.cta {
  text-align: center;
  margin-top: 40px;
}

.button {
  display: inline-block;
  padding: 12px 25px;
  background: #0078b8;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
  margin: 10px;
}

.button:hover {
  background: #005f95;
}

footer {
  background: #003d73;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: 500;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button[type="submit"] {
  background: #003d73;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background: #00508c;
}