/* Footer Styles */
.footer {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 20px 0;
    font-size: 14px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer p {
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Footer Link Styles */
.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    transform: scaleX(0);
    transition: all var(--transition-speed) ease-in-out;
}

.footer-links a:hover::after {
    visibility: visible;
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer p {
        margin-bottom: 15px;
    }

    .footer-links {
        justify-content: center;
    }
}