<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * Footer styles for MontaVis website
 * Contains styling for the enhanced footer with logo and legal links
 */

.montavis-footer {
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Add subtle background effect */
.montavis-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

/* Logo styling */
.footer-logo-container {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    transition: filter 0.3s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
}

/* Footer links styling */
.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after,
.footer-contact h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-link,
.footer-contact-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 20px;
    display: inline-block;
}

.footer-link:before,
.footer-contact-link:before {
    content: 'â€º';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.footer-link:hover,
.footer-contact-link:hover {
    color: white;
    text-decoration: none;
}

.footer-link:hover:before,
.footer-contact-link:hover:before {
    transform: translateY(-50%) translateX(3px);
}

/* Contact styling */
.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact-link {
    font-size: 15px;
}

/* Divider line */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 15%, 
        rgba(255, 255, 255, 0.1) 85%, 
        transparent 100%);
    margin: 30px 0 20px;
}

/* Copyright section */
.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* Animation for hover states */
@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-logo {
        max-width: 180px;
    }
    
    .footer-contact {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .montavis-footer {
        padding: 40px 0 20px;
    }
    
    .footer-links, 
    .footer-contact {
        margin-top: 30px;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-logo {
        max-width: 160px;
    }
}
</pre></body></html>