.footer {
    background-color: #f5f5f5;
    padding: 25px 0 20px;
    width: 100%;
}

.footer-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(20px, 8vw, 370px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.footer-contact-item {
    margin-bottom: 8px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #60724F;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    /*padding-top: 20px;*/
    margin-top: 40px;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #999;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

