.footer {
    background: #FAFAFA;
    padding: 80px 0 40px;
    margin-top: 0;
    border-top: 1px solid #F0F0F0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-description {
    color: #3C3C3C;
    font-size: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h3 {
    color: black;
    font-size: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: bold;
    margin: 0;
}

.footer-links a {
    color: #3C3C3C;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #93D309;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact h3 {
    color: black;
    font-size: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: bold;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info p {
    color: #3C3C3C;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #F0F0F0;
    text-align: center;
}

.footer-bottom p {
    color: #828282;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 1200px) {
    .footer-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
        margin-top: 0;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 0;
    }

    .footer-content {
        gap: 30px;
    }
}