/* Custom styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: #333;
}

/* Navigation styles */
nav {
    background-color: #002868;
    padding: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: #002868;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #001845;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    color: #002868;
}

/* Links */
a {
    color: #002868;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
