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

body {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #1a1a2e;
    line-height: 1.6;
}

header {
    background: #0f2044;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    text-decoration: none;
}

header .logo span {
    color: #c9a84c;
}

header nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    margin-left: 24px;
    transition: color 0.2s;
}

header nav a:hover { color: #ffffff; }

footer {
    background: #0f2044;
    color: #94a3b8;
    padding: 40px;
    font-size: 13px;
}

footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

footer .footer-brand {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

footer .footer-brand span { color: #c9a84c; }

footer a {
    color: #94a3b8;
    text-decoration: none;
}

footer a:hover { color: #ffffff; }

footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

footer .footer-bottom {
    max-width: 1100px;
    margin: 24px auto 0;
    padding-top: 20px;
    border-top: 1px solid #1e3a6e;
    font-size: 12px;
    color: #64748b;
}