#footer2 {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 0 10px 0;
    margin-top: auto;
}

#footer2 .footer-container {
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

#footer2 .footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

#footer2 .footer-col {
    display: flex;
    flex-direction: column;
}

#footer2 .footer-col h4 {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--footer-text);
}

#footer2 .footer-brand {
    gap: 0;
}

#footer2 .footer-social {
    align-items: flex-end;
    text-align: right;
}

#footer2 .footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

#footer2 .footer-links ul,
#footer2 .social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer2 .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

#footer2 .footer-links a,
#footer2 .footer-bottom a {
    color: var(--footer-link-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

#footer2 .footer-links a:hover,
#footer2 .footer-bottom a:hover {
    color: var(--footer-link-color-hover);
}

#footer2 .social-list {
    display: flex;
    gap: 1rem;
    justify-content: end;
}

#footer2 .social-list li {
    list-style: none;
}

#footer2 .social-list a {
    font-size: 1.3rem;
    display: inline-block;
    color: var(--footer-link-color);
    transition: color 0.3s ease;
}

#footer2 .social-list a:hover {
    color: var(--footer-link-color-hover);
}

#footer2 .footer-bottom {
    padding-top: 2rem;
}

#footer2 .footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.75;
    line-height: 1.5;
}

@media (max-width: 768px) {
    #footer2 {
        padding: 2rem 0 10px 0;
    }

    #footer2 .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    #footer2 .footer-col h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    #footer2 .footer-links a {
        font-size: 0.85rem;
    }

    #footer2 .footer-social {
        align-items: flex-start;
        text-align: left;
    }

    #footer2 .social-list {
        justify-content: flex-start;
        gap: 1.5rem;
    }

    #footer2 .social-list a {
        font-size: 1.2rem;
    }

    #footer2 .footer-bottom {
        padding-top: 1.25rem;
    }
}

@media (max-width: 480px) {
    #footer2 {
        padding: 1.5rem 0 10px 0;
    }

    #footer2 .footer-container {
        padding: 0 15px;
    }

    #footer2 .footer-content {
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    #footer2 .footer-col h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    #footer2 .footer-links ul {
        gap: 0.5rem;
    }

    #footer2 .footer-links a {
        font-size: 0.8rem;
    }

    #footer2 .footer-logo {
        height: 40px;
    }

    #footer2 .social-list {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
    }

    #footer2 .social-list a {
        font-size: 1.1rem;
    }

    #footer2 .footer-bottom {
        padding-top: 1rem;
        text-align: center;
    }

    #footer2 .footer-bottom p {
        font-size: 0.75rem;
    }
}