.footer {
            background-color: #ffffff;
            color: #1f2937;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 48px 16px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        /* Logo Section */
        .footer-logo-section h2 {
            color: #000000;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-logo-section img {
            width: 44px;
            height: auto;
        }

        .footer-logo-section p {
            font-size: 14px;
            margin-bottom: 16px;
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-links a {
            color: #1f2937;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #000000;
        }

        .social-links svg {
            width: 24px;
            height: 24px;
        }

        /* Section Headings */
        .footer-section h3 {
            color: #000000;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 16px;
        }

        /* Links */
        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: #1f2937;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #4b5563;
        }

        /* Download Section */
        .download-section p {
            font-size: 14px;
            margin-bottom: 16px;
        }

        .download-btn {
            display: inline-block;
            background-color: #000000;
            color: #ffffff;
            font-weight: 500;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .download-btn:hover {
            background-color: #1f2937;
        }

        /* Bottom Bar */
        .footer-bottom {
            /* border-top: 1px solid #1f2937; */
            margin-top: 48px;
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .footer-bottom p {
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-bottom-links a {
            font-size: 14px;
            color: #1f2937;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: black;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .footer-container {
                padding: 48px 24px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }

            .footer-bottom-links {
                margin-top: 0;
            }
        }

        @media (min-width: 1024px) {
            .footer-container {
                padding: 48px 32px;
            }

            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .footer-logo-section {
                grid-column: span 1;
            }
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        @media screen and (max-width: 767px) {

            .footer{
                text-align: start !important;
            }

            .footer-bottom-links{
                justify-content: start !important;
                align-items: start !important;
                gap : 10;
            }

            .footer-bottom {
                flex-direction: column !important;
                justify-content: start !important;
                align-items: start !important;
            }

        }