body {
    font-family: 'IBM Plex Sans', sans-serif;
    margin: 0;
}

.header {
    background: #012ebe;
}

.header,
section {
    padding: 1rem 3rem;
}

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

footer.footer {
    position: relative;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    height: 100px;
    box-shadow: 3px -3px 5px rgba(0, 0, 0, 0.1);
    padding: 0 2rem;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    background: white;
    z-index: 1000;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #4285F4;
}

@media (max-width: 860px) {
    .footer {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        text-align: center;
        height: auto;
        min-height: 100px;
        padding: 1.5rem 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}