        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #2f3030;
        }
        
        .container {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Footer Styles */
        .footer {
            background: #FFF;
            padding: 60px 0 30px;
        }
        
        .footer-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            gap: 30px;
            justify-content: space-between;
        }
        
        .footer-nav-list {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-nav-list h5 {
            color: #ef7d00;
            font-weight: bold;
            font-size: 18px;
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: 2px solid #ef7d00;
            position: relative;
        }
        
        .footer-nav-list ul {
            list-style: none;
        }
        
        .footer-nav-list ul li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-nav-list ul li span {
            padding-right: 10px;
            line-height: 1;
            display: flex;
            align-items: center;
        }
        
        .footer-nav-list ul li span img {
            width: 18px;
            height: auto;
        }
        
        .footer-nav-list ul li a {
            color: #2f3030;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            position: relative;
        }
        
        .footer-nav-list ul li a:hover {
            color: #ef7d00;
        }
        
        .footer-nav-list ul li a::after {
            content: "";
            position: absolute;
            height: 2px;
            width: 0;
            background: #ef7d00;
            left: 0;
            right: 0;
            bottom: -5px;
            transition: 0.3s;
        }
        
        .footer-nav-list ul li a:hover::after {
            width: 100%;
        }
        
        /* Social Links */
        .footer-nav-list--social ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .footer-nav-list--social ul li {
            margin-bottom: 0;
        }
        
        .footer-nav-list--social ul li a {
            font-size: 20px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #f5f5f5;
            transition: all 0.3s;
        }
        
        .footer-nav-list--social ul li a:hover {
            background: #ef7d00;
            color: white;
            transform: translateY(-3px);
        }
        
        .footer-nav-list--social ul li a::after {
            display: none;
        }
        
        /* Copyright Section */
        .craftedDiv {
            padding: 15px 0;
            background: #333;
            text-align: center;
        }
        
        .craftedDiv p {
            font-weight: bold;
            font-size: 16px;
            color: #fff;
            margin: 0;
					text-align:center;
        }
        
        .craftedDiv p a {
            color: #ef7d00;
            text-decoration: none;
        }
        
        .craftedDiv p a:hover {
            text-decoration: underline;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .footer-nav {
                gap: 20px;
            }
            
            .footer-nav-list {
                min-width: 180px;
            }
        }
        
        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px;
            }
            
            .footer-nav {
                flex-direction: column;
                gap: 0;
            }
            
            .footer-nav-list {
                width: 100%;
                margin-bottom: 20px;
                border-bottom: 1px solid #eee;
                padding-bottom: 15px;
            }
            
            .footer-nav-list:last-child {
                border-bottom: none;
                margin-bottom: 0;
            }
            
            .footer-nav-list h5 {
                cursor: pointer;
                position: relative;
                padding-right: 30px;
            }
            
            .footer-nav-list h5::after {
                content: "+";
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                font-size: 20px;
                color: #ef7d00;
                transition: transform 0.3s;
            }
            
            .footer-nav-list.active h5::after {
                content: "-";
            }
            
            .footer-nav-list ul {
                display: none;
                padding-top: 10px;
            }
            
            .footer-nav-list.active ul {
                display: block;
            }
										
            
            .footer-nav-list--social ul {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .footer {
                padding: 30px 0 15px;
            }
            
            .footer-nav-list h5 {
                font-size: 16px;
            }
            
            .footer-nav-list ul li a {
                font-size: 13px;
            }
            
            .footer-nav-list--social ul li a {
                font-size: 18px;
                width: 36px;
                height: 36px;
            }
            
            .craftedDiv p {
                font-size: 14px;
            }
        }
