    /* Base Styles */
        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');
        
        .site-footer {
            background:#f8f9fa;

      
            color: #000000;
            padding: 3rem 0;
            font-family: 'Roboto', sans-serif;
            width: 100%;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-top {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .footer-address {
            flex: 1;
            min-width: 250px;
            text-align: center;
        }
        
        .footer-address h2 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-weight: 600;
            font-size: 1.5rem;
        }
        
        .footer-address p {
            color: #7f8c8d;
            line-height: 1.6;
        }
        
        .footer-columns {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 2rem;
        }
        
        .footer-col {
            min-width: 150px;
            text-align: center;
        }
        
        .footer-col h3 {
            color: #2c3e50;
            text-transform: uppercase;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-col li {
            margin-bottom: 0.8rem;
        }
        
        .footer-col a {
            color: #34495e;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .footer-col a:hover {
            color: #3498db;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-icons a {
            color: #34495e;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }
        
        .social-icons a:hover {
            color: #3498db;
        }
        
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
        }
        
        .footer-bottom p {
            color: #3498db;
            font-size: 0.9rem;
            margin: 0.5rem 0;
        }
        
        .legal-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .legal-links a {
            color: #3498db;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .legal-links a:hover {
            color: #2980b9;
        }
        
        /* Responsive Styles 768px*/
        @media (max-width: 768px) {
            .footer-top {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .footer-columns {
                justify-content: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .legal-links {
                justify-content: center;
                flex-wrap: wrap;
            }
        }