/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* Header */
.site-header {
  background-color: #003366;
  color: white;
  padding: 20px 0;
  margin-bottom: 20px;
}

.site-header h1 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin-top: 10px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

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

/* Main Content */
main section {
  background: white;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

main h2 {
  color: #003366;
  margin-bottom: 10px;
}

.license {
  font-size: 0.9em;
  margin-top: 20px;
}

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

