.footer-20-container {
    background-color: #f9f6fd; /* Fallback to theme bg */
    color: #334155;
    padding-top: 60px;
    font-family: 'FiraSans', sans-serif;
}

.footer-20-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.footer-20-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-20-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-20-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-20-heading {
    font-family: 'DMSans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.footer-20-text {
    line-height: 1.6;
    margin: 0;
}

.footer-20-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-20-list li {
    margin-bottom: 12px;
}

.footer-20-list li:last-child {
    margin-bottom: 0;
}

.footer-20-link {
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-20-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-20-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-20-icon-wrapper svg {
    width: 16px;
    height: 16px;
}

.footer-20-socials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-20-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-20-social-link:hover {
    background-color: rgba(0,0,0,0.1);
}

.footer-20-social-link svg {
    width: 16px;
    height: 16px;
}

.footer-20-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 20px;
}

.footer-20-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-20-copyright {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}