.container {
    width: 1100px;
}

.t-primary-bgcolor {
    background-color: white;
}

a {
    color: white;
}

body {
    background-color: #FFF;
}

.header {
    background-color: #002856;
    /* full width */
    padding: 3rem 0;
    /* remove side padding so the blue touches edges */
    width: 100%;
    /* optional, but fine */
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    /* your original internal padding */
    margin: 0 auto;
    /* centers the container */
    max-width: 1100px;
    /* same width as your .container */
}

.header__logo img {
    width: 282px;
}

.header__nav a {
    font-size: 16px;
}

.header__nav a:hover {
    color: #c2a01e;
}

.footer-wrapper {
    background-color: #eaedf0;
}

.footer {
    display: grid;
    place-items: center;
    padding: 40px;
    font-size: 18px;
    line-height: 50px;
}