.main-footer {
    background: linear-gradient(180deg, #6B5437 0%, #5A4A3A 100%);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-left {
    display: flex;
    justify-content: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    filter: brightness(1.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.footer-location {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-left,
    .footer-right {
        justify-content: center;
    }
    
    .footer-right {
        align-items: center;
    }
}

