
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #ffffff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Footer Styles */
        .fx-footer {
            font-family: 'Arial', 'Helvetica', sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 50%, #e9ecef 100%);
            color: #333;
            padding: 40px 0 20px;
            margin-top: auto;
            border-top: 1px solid #e0e0e0;
            box-shadow: 0 -2px 20px rgba(0,0,0,0.05);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .logo-section img {
            width: 30vh;
            height: 15vh;
            margin-right: 10px;
            object-fit: contain;
        }
        
        
        
        .company-name {
            color: #2c3e50;
            font-size: 32px;
            font-weight: bold;
            margin: 0;
        }
        
        .company-description {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 320px;
        }
        
        .footer-section h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: bold;
            position: relative;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: #4e89eeff;
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #666;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: #4e89eeff;
            transform: translateX(5px);
        }
        
        .footer-links a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .social-section {
            display: flex;
            flex-direction: column;
        }
        
        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #4e89eeff;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
            box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
        }
        
        .social-icon:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
        }
        
        .social-icon.facebook { background: linear-gradient(135deg, #1877f2, #0d5fbb); }
        .social-icon.twitter { background: linear-gradient(135deg, #1da1f2, #0c85d0); }
        .social-icon.linkedin { background: linear-gradient(135deg, #0077b5, #005885); }
        .social-icon.instagram { 
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
        }
        .social-icon.youtube { background: linear-gradient(135deg, #ff0000, #cc0000); }
        
        .copyright {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #e0e0e0;
            text-align: center;
        }
        
        .copyright p {
            color: #888;
            font-size: 13px;
            margin: 8px 0;
            line-height: 1.5;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-content {
                gap: 30px;
            }
            
            .footer-section {
                min-width: 200px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                gap: 35px;
                text-align: left;
            }
            
            .footer-section {
                min-width: 100%;
            }
            
            .logo-section {
                justify-content: flex-start;
                text-align: left;
                flex-direction: row;
            }
            
            .logo-section img {
                width: 200px;
                height: 100px;
                margin-right: 15px;
                margin-bottom: 0;
            }
            
            .company-description {
                text-align: left;
                margin-left: 0;
                margin-right: auto;
                max-width: 100%;
            }
            
            .social-section {
                align-items: flex-start;
            }
            
            .footer-section h3::after {
                left: 0;
                transform: none;
            }
            
            .footer-links a {
                justify-content: flex-start;
            }
            
            .social-icons {
                justify-content: flex-start;
            }
        }
        
        @media (max-width: 480px) {
            .fx-footer {
                padding: 30px 0 15px;
            }
            
            .footer-container {
                padding: 0 15px;
            }
            
            .footer-content {
                gap: 30px;
            }
            
            .company-name {
                font-size: 28px;
            }
            
            .logo-section img {
                width: 180px;
                height: 90px;
            }
            
            .social-icons {
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 10px;
            }
            
            .social-icon {
                width: 38px;
                height: 38px;
                font-size: 15px;
            }
            
            .footer-section h3 {
                font-size: 18px;
                margin-bottom: 15px;
            }
            
            .footer-links a {
                font-size: 14px;
            }
            
            .company-description {
                font-size: 14px;
            }
        }
        
        @media (max-width: 360px) {
            .logo-section img {
                width: 160px;
                height: 80px;
            }
            
            .social-icons {
                gap: 8px;
            }
            
            .social-icon {
                width: 36px;
                height: 36px;
            }
            
            .logo-section {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .logo-section img {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }