.footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 4rem 2rem 0;
    margin-top: 0;
    position: relative;
    z-index: 2;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

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

.footer-logo {
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 0;
}

.footer-brand p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--light-text);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

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

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a:hover {
        transform: none;
    }
} 