/* Footer */
.footer {
    background: #F6F6F6;
}

/* Desktop Footer - restore original layout */
@media (min-width: 769px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 136px;
        padding: 56px 36px;
    }
    
    .footer-top {
        align-self: stretch;
        justify-content: space-between;
        align-items: flex-start;
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
    }
    
    .footer-description {
        width: 510px;
        color: #121212;
        font-size: 24px;
        font-family: 'Urbanist', sans-serif;
        font-weight: 500;
        line-height: 26.4px;
        word-wrap: break-word;
        text-align: left;
        max-width: none;
    }
    
    .footer-links {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 64px;
        display: flex;
        align-self: auto;
    }
    
    .footer-column {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 24px;
        display: flex;
    }
    
    .footer-link {
        align-self: stretch;
        color: #121212;
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1.375rem;
        word-wrap: break-word;
        text-decoration: none;
    }
    
    .footer-link.active {
        text-decoration: underline;
    }
    
    .footer-cta-container {
        display: flex;
        align-items: center;
    }
    
    .footer-cta {
        padding: 12px 18px 12px 16px;
        background: #121212;
        border-radius: 100px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        display: flex;
        margin: 0;
        width: auto;
        max-width: none;
        align-self: auto;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .footer-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(18, 18, 18, 0.3);
    }
    
    .footer-cta span {
        color: white;
        font-size: 16px;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        line-height: 16px;
    }
    
    .footer-bottom {
        align-self: stretch;
        justify-content: space-between;
        align-items: center;
        display: flex;
        gap: 0;
    }
    
    .footer-logo .logo-img {
        width: 112.95px;
        height: 28.83px;
        opacity: 1;
        transform: rotate(0deg);
    }
    
    .footer-legal {
        justify-content: flex-start;
        align-items: center;
        gap: 36px;
        display: flex;
    }
    
    .footer-legal-link {
        color: #121212;
        font-size: 16px;
        font-family: 'Urbanist', sans-serif;
        font-weight: 500;
        line-height: 17.6px;
        word-wrap: break-word;
        text-decoration: none;
    }
    
    .footer-separator {
        color: #121212;
        font-size: 16px;
        font-family: 'Urbanist', sans-serif;
        font-weight: 500;
        line-height: 17.6px;
        word-wrap: break-word;
        display: inline;
    }
    
    .footer-copyright {
        color: #121212;
        font-size: 16px;
        font-family: 'Urbanist', sans-serif;
        font-weight: 500;
        line-height: 17.6px;
        word-wrap: break-word;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 0;
    }
    
    .footer-container {
        padding: 3.5rem 2.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5.25rem;
        display: flex;
    }
    
    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4rem;
        align-self: stretch;
    }
    
    .footer-description {
        font-size: 1.25rem;
        line-height: 1.375rem;
        text-align: left;
        max-width: none;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        justify-items: center;
        align-self: center;
    }
    
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .footer-link {
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1.1rem;
        color: #121212;
        text-decoration: none;
    }
    
    .footer-link.active {
        text-decoration: underline;
    }
    
    .footer-cta-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .footer-cta {
        margin: 0 auto;
        display: block;
        width: 100%;
        max-width: 300px;
        align-self: center;
    }
    
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.875rem;
        align-self: stretch;
    }
    
    .footer-logo .logo-img {
        width: 9.75rem;
        height: 2.24875rem;
    }
    
    .footer-legal {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .footer-legal-link {
        font-size: 0.875rem;
        line-height: 0.9625rem;
        color: #121212;
        text-decoration: none;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-copyright {
        font-size: 0.875rem;
        line-height: 0.9625rem;
    }
}
