.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand img {
    height: 56px;
    width: auto;
}

.footer-brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #66ccff;
}

.footer-links {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 2.5rem;
    width: 100%;
    max-width: 900px;
    justify-items: center;
}

.footer-column h4 {
    color: var(--text-main);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer a {
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}


@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        justify-items: start;
    }
}