*{

    padding: 0;
    margin: 0;
    box-sizing: border-box;

}




            footer {
            margin-top: 3rem!important;
            background: linear-gradient(135deg, #102269 0%, #09269a 100%);
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 3rem auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .Footer_1Lft-Section h1,
        .Footer_2Rgt-section h1 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .Footer_1Lft-Section h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .addBusiness {
            margin-bottom: 30px;
        }

        .addBusiness h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #e0e0e0;
        }

        .addBusiness p {
            font-size: 15px;
            line-height: 1.8;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .registration-info {
            margin-top: 20px;
        }

        .registration-info p {
            font-size: 14px;
            color: #e0e0e0;
            margin-bottom: 5px;
        }

        .social_links {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        .social_links a {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #1e3c72;
            font-size: 22px;
        }

        .social_links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(7, 33, 147, 0.3);
        }

        .Footer_2Rgt-section h2 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            margin-top: 30px;
            text-transform: uppercase;
        }

        .shop-description {
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 20px;
            color: #e8e8e8;
        }

        .shop-logo {
            margin: 20px 0;
        }

        .shop-logo img {
            max-width: 150px;
            height: auto;
        }

        .btn-visit {
            width: fit-content;
            display: inline-block;
            background: #e74c3c;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .btn-visit:hover {
            background: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }

        .info-brochure {
            
            width: fit-content;
            display: inline-block;
            background: white;
            color: #1e3c72;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .info-brochure:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
        }

        .useful-links {
            margin-top: 30px;
        }

        .useful-links h3 {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .useful-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .useful-links a:hover {
            color: #e0e0e0;
            text-decoration: underline;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-bottom a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #e0e0e0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            footer {
                padding: 40px 20px 20px;
            }

            .Footer_1Lft-Section h1,
            .Footer_2Rgt-section h1 {
                font-size: 20px;
            }

            .Footer_2Rgt-section h2 {
                font-size: 18px;
            }

            .social_links a {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .btn-visit,
            .info-brochure {
                display: block;
                text-align: center;
                margin-top: 15px;
            }

            .footer-bottom a {
                word-break: break-all;
                display: block;
                margin: 10px 0;
            }
        }

        @media (max-width: 480px) {
            .Footer_1Lft-Section h1,
            .Footer_2Rgt-section h1 {
                font-size: 18px;
            }

            .addBusiness p,
            .shop-description {
                font-size: 14px;
            }

            .social_links {
                flex-wrap: wrap;
            }
        }






