/* Footer */
footer {
    background: var(--dark-bg);
    padding: 3rem 20px;
    text-align: center;
    border-top: 1px solid rgba(53, 167, 156, 0.2);
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.copyright a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--primary-color);
}
