.main-footer {
                background: var(--text-dark);
                color: #fff;
                padding: 50px 0 30px;
}

.footer-content {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                flex-wrap: wrap;
                gap: 40px;
                margin-bottom: 40px;
            }
            
            .footer-brand .logo-text {
                color: #fff;
                font-size: 1.5rem;
            }
            
            .footer-brand p {
                color: var(--text-light);
                margin-top: 15px;
                max-width: 300px;
                line-height: 1.6;
            }
            
            .footer-links h4 {
                font-size: 1rem;
                font-weight: 600;
                margin-bottom: 20px;
            }
            
            .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            
            .footer-links ul li {
                margin-bottom: 12px;
            }
            
            .footer-links ul li a {
                color: var(--text-light);
                text-decoration: none;
                transition: color 0.2s;
            }
            
            .footer-links ul li a:hover {
                color: var(--primary-orange);
            }
            
            .footer-social h4 {
                font-size: 1rem;
                font-weight: 600;
                margin-bottom: 20px;
            }
            
            .social-icons {
                display: flex;
                gap: 12px;
            }
            
            .social-icons a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 42px;
                height: 42px;
                background: rgba(255,255,255,0.1);
                border-radius: 50%;
                color: #fff;
                transition: all 0.2s;
            }
            
            .social-icons a:hover {
                background: var(--primary-orange);
                transform: translateY(-3px);
            }
            
            .footer-bottom {
                border-top: 1px solid rgba(255,255,255,0.1);
                padding-top: 25px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .footer-bottom p {
                color: var(--text-light);
                font-size: 0.9rem;
                margin: 0;
            }
            
            .footer-bottom-links {
                display: flex;
                gap: 25px;
            }
            
            .footer-bottom-links a {
                color: var(--text-light);
                text-decoration: none;
                font-size: 0.9rem;
                transition: color 0.2s;
            }
            
            .footer-bottom-links a:hover {
                color: var(--primary-orange);
            }    