body {
  margin: 0;
  font-family: Arial;
  background: #f4f6fb;
}

.container {
  width: 90%;
  margin: auto;
}

header {
  background: #0a2a66;
  color: white;
  padding: 15px 0;
}

.logo {
  float: left;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline;
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: linear-gradient(to right, #0a2a66, #1f4ed8);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.btn {
  background: #ffcc00;
  padding: 12px 25px;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.content {
  margin: 40px auto;
}

.full-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

footer {
  background: #0a2a66;
  color: white;
  text-align: center;
  padding: 20px;
}

.footer-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}