body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  background-color: #f5f8fa;
  color: #003366;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background-color: #003366;
  color: #ffcc00;
  padding: 20px 0;
  text-align: center;
}

.site-title {
  font-size: 2em;
}

.navbar {
  margin-top: 10px;
}

.nav-menu {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-menu a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
}

.nav-menu a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #003366, #0059b3);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
}

/* Main Sections */
.about {
  padding: 40px 0;
}

.about h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

/* Highlight Cards */
.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background-color: #ffffff;
  border-left: 5px solid #003366;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 15px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
