* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.logo {
  font-size: 24px;
  font-weight: 700;
  color: #003d7a;
  text-decoration: none;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}
nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}
nav a:hover {
  color: #003d7a;
}
.hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
  border-bottom: 2px solid #003d7a;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #003d7a;
}
.hero .subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}
.section {
  margin-bottom: 80px;
}
.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #003d7a;
  border-bottom: 3px solid #003d7a;
  padding-bottom: 15px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #003d7a;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  color: #003d7a;
  margin-bottom: 12px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.stat-box {
  background: linear-gradient(135deg, #003d7a 0%, #005faa 100%);
  color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}
.stat-box .number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
  margin-top: 80px;
}
footer a {
  color: #bbb;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}
.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
}
