body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background: #F9FAFB;
  color: #1E3A8A;
}

header {
  background: #1E3A8A;
  color: white;
  padding: 15px 30px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h2 {
  font-family: 'Poppins', sans-serif;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

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

.hero {
  text-align: center;
  padding: 50px;
  background: #06B6
