.footer-module {
    background-color: #000000;
    padding: 3rem 2rem 2rem;
    border-top: 1px solid #333333;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    border: 1px solid #333333;
    border-radius: 5px;
    background-color: #0a0a0a;
    margin-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:last-child {
    align-items: flex-end;
}

.footer-logo {
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: brightness(1);
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Open Sans', 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-item:hover {
    color: #cd7f32;
}

.footer-item i {
    font-size: 1.1rem;
    color: #cd7f32;
    min-width: 20px;
    text-align: center;
}

.footer-item span {
    line-height: 1.4;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #1a1a1a;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #cd7f32;
}

.footer-links .separator {
    color: #666666;
    font-size: 0.9rem;
}

.footer-copyright p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #999999;
    margin: 0;
}

.footer-copyright a {
    color: #cd7f32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #e69952;
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 1024px) {
    .footer-content {
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .footer-logo img {
        height: 70px;
    }
    
    .footer-item {
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-module {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .footer-column:first-child,
    .footer-column:last-child {
        align-items: center;
    }
    
    .footer-logo {
        order: -1;
        padding: 1rem 0;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-item {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-module {
        padding: 1.5rem 0.5rem 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        padding: 1rem 0.8rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-item {
        font-size: 0.8rem;
        gap: 0.6rem;
    }
    
    .footer-item i {
        font-size: 1rem;
    }
    
    .footer-copyright {
        padding-top: 1rem;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}
