/* =========================
   Base
   ========================= */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background-color: #ffffff;
    color: #111;
    display: flex;
    flex-direction: column;
}

/* =========================
   Header
   ========================= */
.site-header {
    display: flex;
    justify-content: center;
    padding: 40px 20px 20px;
}

.site-header img {
    max-width: 300px;
    height: auto;
}

/* =========================
   Main
   ========================= */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* =========================
   Footer
   ========================= */
.site-footer {
    text-align: center;
    padding: 24px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 12px;
}

.footer-links a {
    margin: 0 8px;
    white-space: nowrap;
}
