* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            overflow-x: hidden;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Footer */
        .site-footer {
            background: black;
            color: #fff;
            padding: 60px 20px;
            padding-bottom: 10px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: auto;
            gap: 40px;
            justify-content: space-between;
        }

        .footer-col {
            flex: 1 1 200px;
            min-width: 250px;
        }
        .footer-col img {
            width: 100%;
            max-width: 150px;
            /* margin-bottom: 20px; */
            margin-left: 12%;
        }
        
        .logo-containerff {
            display: flex;
            align-items: center;
            gap: 15px;
            /* margin-bottom: 20px; */
        }
        
        .logo-containerff img {
            width: 50px;
            height: 50px;
        }
        
        .logo-textf {
            /* font-size: 15px; */
            font-weight: bold;
            color: #fff;
        }

        .footer-col h3.logo {
            font-size: 24px;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
            display: inline-block;
        }

        .footer-col h3.logo::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #2a52be;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .footer-col h3.logo:hover::after {
            transform: scaleX(1);
        }

        .footer-col h4 {
            margin-bottom: 20px;
            color: #fff;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #2a52be;
        }

        .footer-col p,
        .footer-col li {
            font-size: 14px;
            margin-bottom: 12px;
            color: #ccc;
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col li {
            position: relative;
            padding-left: 15px;
        }

        .footer-col li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #2a52be;
        }

        .footer-col a {
            text-decoration: none;
            color: #ccc;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-col a:hover {
            color: #0144fd;
            transform: translateX(5px);
        }

        /* Contact Info Box */
        /* .contact-info-box { */
            /* background: #2a2a2a;
            padding: 20px;
            border-radius: 8px; */
            /* border-left: 4px solid #2a52be; */
        /* } */

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-info-item i {
            margin-right: 10px;
            color: #2a52be;
            margin-top: 3px;
        }

        .contact-info-text {
            flex: 1;
        }

        /* Footer bottom */
        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 20px;
            border-top: 1px solid #333;
            text-align: center;
            color: #777;
            font-size: 13px;
        }

        /* Social Icons */
        .footer-social {
            display: flex;
            gap: 15px;
            /* margin-top: 20px; */
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #2a2a2a;
            color: #ccc;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: #0144fd;
            color: #fff;
            transform: translateY(-3px);
        }
        
        .footer-social a:hover svg {
            color: #7db0ff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .footer-grid {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-col {
                min-width: 100%;
            }
            
            .footer-col h4::after {
                width: 30px;
            }
            
            .logo-containerf {
                flex-direction: column;
                align-items: flex-start;
            }
        }