.av-footer {
    width: 100%;
    font-family: inherit;
}

.av-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.av-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    margin-bottom: 60px;
}

.av-footer-col {
    display: flex;
    flex-direction: column;
}

.av-footer-logo {
    margin-bottom: 20px;
}

.av-footer-logo img {
    display: block;
    height: auto;
}

.av-col-brand .av-footer-text {
    max-width: 90%;
    line-height: 1.6;
    margin: 0;
}

.av-footer-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.av-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.av-footer-list li {
    margin-bottom: 12px;
}

.av-footer-list a {
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.av-footer-contact .av-footer-text {
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.av-contact-link {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.av-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.av-footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.av-footer-legal a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.av-footer-copyright {
    opacity: 0.8;
}

/* Tablet */
@media (max-width: 1024px) {
    .av-footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 50px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .av-footer-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
    
    .av-col-brand .av-footer-text {
        max-width: 100%;
    }

    .av-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .av-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}