.container-footer {
    background-color: #ffffff;
    border-top: 1px solid #e9e9ed;
    padding: 64px 20px 0;
    font-family: Arial, sans-serif;
    color: #6a7282;
}

.container-footer .footer-inner {
    max-width: 1290px;
    margin: 0 auto;
}

.container-footer .footer-top {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 64px;
}

.container-footer .footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.container-footer .footer-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.container-footer .footer-desc {
    max-width: 365px;
    font-size: 14px;
    line-height: 1.6;
    color: #6a7282;
}

.container-footer .footer-socials {
    display: flex;
    gap: 16px;
}

.container-footer .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.container-footer .social-link:hover {
    transform: translateY(-2px);
}

.container-footer .social-link svg {
    width: 100%;
    height: 100%;
}

.container-footer .footer-title {
    font-family: Quicksand, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1f1f42;
    margin: 0;
}

.container-footer .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.container-footer .footer-list-item a,
.container-footer .footer-list-item span {
    font-size: 14px;
    color: #6a7282;
    text-decoration: none;
    transition: color 0.2s ease;
}

.container-footer .footer-list-item a:hover {
    color: #1f1f42;
}

.container-footer .contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.container-footer .contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.container-footer .contact-icon svg {
    width: 100%;
    height: 100%;
}

.container-footer .contact-text {
    font-size: 14px;
    line-height: 1.5;
    color: #6a7282;
}

.container-footer .footer-bottom {
    border-top: 1px solid #e9e9ed;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.container-footer .copyright,
.container-footer .privacy-link {
    font-size: 13px;
    color: #99a1af;
    text-decoration: none;
}

.container-footer .privacy-link:hover {
    color: #6a7282;
}

/* Desktop */
@media (min-width: 768px) {
    .container-footer {
        padding: 64px 75px 0;
    }

    .container-footer .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
    }

    .container-footer .footer-column {
        flex: 1;
    }

    .container-footer .footer-column:first-child {
        flex: 1.5;
    }

    .container-footer .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
