/* FOOTER */
.footer {
    background-color: #181818;
    color: #f5f5f5;
    padding: 40px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #333;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-logo {
    width: 120px;
    height: 120px;
}

.footer-logo img {
    width: 120px;
    height: 120px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-brand-text {
    font-size: 16px;
    line-height: 1.5;
    color: #d1d5d0;
}

.footer-columns {
    display: flex;
    gap: 120px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
    color: #d1d5d0;
    font-size: 16px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    /* FOOTER */
    .footer-columns {
        gap: 30px
    }
}

@media (max-width: 768px) {

    /* FOOTER */
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 520px) {

    /* FOOTER */
    .footer-columns {
        flex-direction: column;
        align-items: center;
    }
}