footer {
    background-color: var(--menu-color);
    color: var(--text-color);
    padding: 40px 20px 20px;
    margin-top: 80px;
}

.footer {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left{
    flex:2;
}

.footer-middle, .footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    font-family: Inter;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-desc {
    font-family: Inter;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.8;
    max-width: 400px;
}

.footer-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom-text {
    font-size: 14px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-left, .footer-middle, .footer-right {
        width: 100%;
        min-width: auto;
        text-align: center;
    }
    
    .footer-desc {
        margin: 0 auto;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .footer {
        gap: 20px;
    }
    
    .footer-left, .footer-middle, .footer-right {
        min-width: 200px;
    }
}