.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 4rem 1.5rem;
    font-size: 0.95rem;
    margin-top: 6rem;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    flex: 1 1 300px;
    text-align: left;
}

.footer-info .footer-copyright {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}

.footer-info .footer-tagline {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-shrink: 0;
}

.footer-category {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-category h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-display);
}

.footer a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-legal {
    padding-top: 2rem;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
    text-align: left;
    border-top: 1px solid #334155;
}

.footer-legal p {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.footer-legal strong {
    color: #e2e8f0;
}

@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-info,
    .footer-links {
        width: 100%;
        text-align: left;
        flex: 0 0 auto;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 2rem;
    }

    .footer-category {
        align-items: flex-start;
    }

    .footer-legal {
        text-align: left;
    }
}