.footer-container {
    background-color: #f5f7fa;
    width: 100%;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.footer-left,
.footer-right {
    width: auto;
    text-align: center;
}

.footer-left span {
    font-size: 0.85rem;
    color: #666;
}

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

.footer-links li {
    display: inline;
}

.footer-links li:not(:last-child)::after {
    content: "|";
    margin: 0 8px;
    color: #ccc;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #007bff;
    text-decoration: underline;
}
