/* Footer Styles */
.ls-footer {
    background: #222;
    padding: 70px;
    margin-top: 80px;
}

.ls-footer__container {
    margin: 0 auto;
}

.ls-footer__content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.ls-footer__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ls-footer__logo {
    flex-shrink: 0;
}

.ls-footer__apps {
    display: flex;
    gap: 12px;
}

.ls-footer__apps a {
    display: block;
}

.ls-footer__right {
    display: flex;
    align-items: flex-start;
    margin-left: auto;
}

.ls-footer__links-primary {
    display: flex;
    gap: 24px;
}

.ls-footer__links-primary a {
    color: #fff;
    font-family: "Sofia Sans", sans-serif;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.ls-footer__links-primary a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.ls-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ls-footer__copyright {
    color: #aaa;
    font-family: "Sofia Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    margin-top: 30px;
    text-align: center;
}

.ls-footer__links-secondary {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.ls-footer__links-secondary a {
    color: #aaa;
    font-family: "Sofia Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.ls-footer__links-secondary a:hover {
    color: #fff;
}

.ls-footer__links-secondary a:not(:last-of-type):after {
    content: "|";
    margin: 0 8px;
}

@media (max-width: 480px) {
  
    .ls-footer {
        padding: 40px 20px;
    }

    .ls-footer__content {
        flex-direction: column;
        gap: 30px;
    }

    .ls-footer__left {
        align-items: center;
    }

    .ls-footer__right {
        margin: auto;
    }

    .ls-footer__links-primary {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .ls-footer__links-secondary a:not(:last-of-type):after {
        margin: 0 4px;
    }
}