.footer {
    background-color: var(--white);
    border-top: 1px solid #eaeaea;
    padding: 60px 24px 24px;
    color: var(--text);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    min-width: 200px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 0;
    margin-top: 4px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand h3 {
    font-size: 1.25rem;
    margin: 0 0 8px 0;
    font-weight: 600;
    text-align: left;
}

.footer-brand p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
}

.footer-links {
    display: flex;
    gap: 80px;
    text-align: left;
}

.link-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 120px;
}

.link-group h4 {
    font-size: 0.9rem;
    margin: 0 0 16px 0;
    font-weight: 600;
    padding-left: 0 !important;
    text-align: left !important;
}

.link-group a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.2s ease;
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.link-group a:hover {
    color: var(--blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #eaeaea;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #666;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--blue);
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .footer-brand-text {
        text-align: left;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: center;
    }

    .footer-brand-text {
        text-align: center;
    }
}