footer {
    width: 100%;
    padding: 0;
    background-color: transparent;
    margin-top: 40px;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-section {
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-bottom {
    max-width: 1000px;
    margin: 30px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    margin-bottom: 8px;
    color: #999;
}

.feedback {
    color: #999;
}

.feedback-link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.feedback-link:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .footer-container {
        gap: 30px;
    }

    .footer-bottom {
        text-align: center;
    }
}