/* Basic site styling */

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

header {
  background-color: #002b5c;
  color: white;
  padding: 20px 40px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

.tagline {
  font-size: 1rem;
  margin-top: 5px;
  font-weight: 300;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

nav ul li {
  margin: 0 15px;
}

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

nav ul li a:hover {
  text-decoration: underline;
}

main {
  padding: 40px 20px;
  max-width: 960px;
  margin: auto;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section {
  margin-bottom: 40px;
}

h2 {
  color: #002b5c;
  border-bottom: 2px solid #ddd;
  padding-bottom: 8px;
}

ul {
  padding-left: 20px;
}

a.button {
  display: inline-block;
  background-color: #0069d9;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
  font-weight: bold;
}

a.button:hover {
  background-color: #004a9f;
}

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