footer {
    background: white;
    border-top: 1px solid rgba(6, 182, 212, 0.15);
    padding: 1rem 0;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link-item a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

    .footer-link-item a:hover {
        color: var(--text-primary);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

    .footer-bottom p {
        margin: 0;
        padding: 0;
        line-height: 1.3;
        font-size: 0.9rem;
        color: var(--text-muted);
    }

@media (max-width: 600px) {
    .footer-wrapper,
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem 1.25rem;
    }
}
