/* Footer */
.footer {
    padding: calc(var(--space-lg) * 2);
    background-color: #131b23;
    color: #fcfcff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
}
.footer-logo {
    width: 100%;
    font-size: .6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}
.footer-logo img {
    width: 40%;
    max-width: 100px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-position: center;
}
.company-aboutus {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-md);
    text-align-last: left;
    color: #fcfcff;
}
.company-header {
    color: var(--accent-light);
    font-weight: 600;
}
.company-aboutus ul li {
    list-style: none;
}
.company-aboutus ul li a:hover {
    text-decoration: underline;
}

/* Desktop View Optimization */
@media screen and (min-width: 1024px) {
    .footer {
        padding: calc(var(--space-lg) * 4) calc(var(--space-lg) * 6);
    }
}