<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito';
    line-height: 1.6;
}

a{
    text-decoration: none;
    color: #000000;
}

/* Footer Section */
.footer-section {
    background: #F5F5F5;
    padding: 60px 20px 30px;
}

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

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* Logo Section */
.footer-logo-container {
    margin-bottom: 30px;
    position: relative;
}

/* Logo Image Styling */
.logo-container {
  
    display: flex;
    align-items: center;
}

.company-logo {
    width: 51px;
    height: 51px;
    border-radius: 29px;
    position: relative;
    top: 0;
    left: 0;
    object-fit: cover;
    margin: 10px;
    margin-left: 0;
}

.company-name {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 5px;
}

.company-tagline {
    font-size: 20px;
    margin-bottom: 5px;
}

.company-year {
    font-size: 20px;
    color: #666;
}

/* Footer Links */
.footer-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    min-width: 120px;
}

.column-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    font-size: 18px;
}

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

.footer-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

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

/* Footer Divider */
.footer-divider {
    height: 1px;
    width: 100%;
    max-width: 1241px;
    background-color: #4E4E4E;
    margin: 20px 0;
}

/* Footer Copyright */
.footer-copyright {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
}

/* Social Section */
.footer-social-section {
    background: #333333;
    color: white;
    padding: 30px 20px;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-follow h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 20px;
    height: 34px;
}

.social-icon {
    color: white;
    font-size: 24px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

/* App Badges - Fixed to match reference image */
.app-badges {
    display: flex;
    gap: 20px;
}

.app-badge {
    text-decoration: none;
    border: 2px solid #666;
    border-radius: 10px;
    transition: opacity 0.3s ease;
    display: block;
    width: 218px;
    height: 77px;
    overflow: hidden;
}

.app-badge:hover {
    opacity: 0.9;
}

.app-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.google-play, .app-store {
    position: static;
}

/* Media Queries */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .footer-top {
        flex-direction: column;
    }
    
    .footer-links-container {
        width: 100%;
        justify-content: space-between;
    }
    
    .footer-column {
        min-width: 100px;
    }
    
    .social-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .app-badges {
        width: 100%;
        justify-content: flex-start;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-top {
        flex-direction: column;
    }
    
    .footer-links-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .app-badges {
        width: 100%;
        justify-content: flex-start;
        margin-top: 20px;
    }
}</pre></body></html>