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

body {
    font-family: system-ui, -apple-system, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Header */
header {
    background: #1e3545;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
}

.logo img { height: 48px; }

.logo-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
}

nav a:hover, nav a.active { color: white; }

.btn-header {
    background: white;
    color: #1e3545;
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e3545 0%, #2c5f7c 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.375rem;
    opacity: 0.95;
}

/* Content */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }

.content-section { padding: 4rem 0; }

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #1e3545;
    margin-bottom: 1rem;
}

.content-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.content-block.highlight {
    background: #f7f7f7;
    padding: 2.5rem;
    border-left: 5px solid #2c5f7c;
    border-radius: 4px;
}

.cta-block {
    background: #1e3545;
    color: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 4rem;
}

.cta-block h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-block p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    padding: 1.125rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #1e3545;
}

/* Footer */
footer {
    background: #0d1f2d;
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-col h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p, .footer-col a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    display: block;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
}

.footer-col a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    nav ul { display: none; }
    .page-hero h1 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
