/* Footer Styles */
#footer {
    background: #f8f9fa;
    padding: 40px 0 0;
    margin-top: 50px;
    border-top: 1px solid #e5e7eb;
}

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

.footer-content {
    padding-bottom: 30px;
}

/* Footer Sitemap */
.footer-sitemap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    justify-content: center;
}

.footer-col {
    list-style: none;
    text-align: center;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.footer-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-title a:hover {
    color: #3b82f6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3b82f6;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    background: #fff;
    width: 100%;
    margin: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #3b82f6;
}

.copyright {
    text-align: center;
    color: #999;
    font-size: 13px;
    line-height: 1.8;
}

.copyright p {
    margin: 0;
}

.copyright-text {
    margin-top: 10px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1133px) {
    #footer {
        padding: 30px 0 0;
        margin-top: 30px;
    }
    
    .footer-sitemap {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-col ul li a {
        font-size: 13px;
    }
    
    .footer-links ul {
        gap: 12px;
    }
    
    .footer-links ul li a {
        font-size: 13px;
    }
    
    .copyright {
        font-size: 12px;
    }
}

