footer {
    background: linear-gradient(to bottom, #ffffff 10%, #9dd9f7);
    color: #3a3a3a;
    padding: 2rem 1.5rem;
    font-size: .9rem;
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 auto;
    max-width: 1000px;
    padding: 1rem;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1 1 30%;
    text-align: center;
    min-width: 200px;
}

.footer-center p {
    font-weight: bold;
    color: #333;
    margin: .5rem 0;
}

.footer-left ul,
.footer-center ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-left a {
    color: #0b0b0b;
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
    transition: color .2s ease, text-decoration-color .2s ease;
}

.footer-left a:hover {
    color: #0b0b0b;
    text-decoration: underline;
}

.footer-left a:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 6px;
    border-radius: 6px;
}

.footer-right p {
    margin: .2rem 0;
    font-size: .95rem;
    color: #3a3a3a;
}

.footer-right p:last-child {
    font-size: .85rem;
    font-style: italic;
    color: #070707;
}