Footer {
    background: #202124;
    color: #e8eaed;
    padding: 5rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #202124;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.2rem;
}

.footer-logo-text {
    color: #ffffff;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.footer-description {
    color: #bdc1c6;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-link {
    background: #3c4043;
    color: #e8eaed;
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-link:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.footer-title {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #bdc1c6;
    text-decoration: none;
    transition: all 0.25s ease;
}

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

.footer-links li {
    color: #bdc1c6;
}

.footer-bottom {
    border-top: 1px solid #3c4043;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #bdc1c6;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.25s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}