.footer {
    font-family: 'Inter', sans-serif;
    background: var(--primary-dark-1, #03606B);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer > .container-fluid {
    width: 100%;
    max-width: 1412px;
}

.footer-link {
    display: inline-block;
    padding: 8px 0px;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.8;
    text-decoration: none;
    color: #fff;
}

.footer-separator {
    height: 1px;
    background: var(--Disabled, #B6B6B6);
    width: 100%;
}

.copyright {
    color: var(--background-white, #FFF);
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    display: flex;
    padding: 0 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    display: inline-block;
    white-space: normal;
}

.copyright a {
    white-space: nowrap;
    display: inline-block;
}