.footer {
            background-color: #2d3748;
            color: #e2e8f0;
            padding: 60px 0 0 0;
            margin-top: 100px;
        }
        
        .footer-logo {
            margin-bottom: 40px;
        }
        
        .footer-logo img {
            max-height: 40px;
            width: auto;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 16px;
        }
        
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #4a5568;
            padding: 30px 0;
            margin-top: 50px;
        }
        
        .copyright {
            color: #a0aec0;
            font-size: 14px;
            margin: 0;
        }
        
        .made-in {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            color: #a0aec0;
            font-size: 14px;
        }
        
        .flag {
            width: 24px;
            height: 16px;
            margin-left: 8px;
            background: linear-gradient(to bottom, #ff9933 33%, white 33%, white 66%, #138808 66%);
            border-radius: 2px;
        }
        
        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 0 0;
            }
            
            .footer-links {
                margin-bottom: 30px;
            }
            
            .made-in {
                justify-content: flex-start;
                margin-top: 15px;
            }
        }