body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/***** HEADER *****/
.site-header {
    background-color: #F0F7FF;
    padding: 10px 24px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo {
    width: 42px;
    height: auto;
}
.brand-name {
    font-weight: 600;
    font-size: 15px;
    color: #002B82;
}
.header-nav {
    display: flex;
    gap: 32px;
}
.header-nav a {
    text-decoration: none;
    color: #002B82;
    font-size: 15px;
}
.header-nav a:hover {
    color: #002B82;
}

/***** FOOTER *****/
.site-footer {
    background-color: #002B82;
    color: white;
    text-align: center;
    padding: 39px 20px 20px 20px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-top: auto;
    width: 100%;
}