        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }


        /* Main Content */

        /* Categories Section */
        .categories-section {
            display: flex;
            background-color: white;
            padding: 10px 0;
            margin-top: 0px;
            border-radius: 2px;
            box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .categories-section::-webkit-scrollbar {
            display: none;
        }

        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 80px;
            padding: 5px;
            cursor: pointer;
            text-align: center;
            flex-shrink: 0;
        }

        .category-item img {
            width: 70px;
            /* bigger image */
            height: 70px;
            /* bigger circle */
            margin-bottom: 8px;
            border-radius: 50%;
            /* perfect circle */
            background-color: #f9f9f9;
            /* light white background */
            border: 1.5px solid #dcdcdc;
            /* slightly stronger light border */
            padding: 10px;
            /* space between image and circle edge */
            object-fit: contain;
            /* image fits nicely inside */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
            /* soft depth shadow */
            transition: all 0.2s ease-in-out;
        }

        .category-item img:hover {
            transform: scale(1.08);
            /* gentle zoom on hover */
            border-color: #bfbfbf;
            background-color: #ffffff;
        }


        .category-item span {
            font-size: 12px;
            font-weight: 500;
            color: #212121;
        }

        /* Banner Section */
        /* .banner-section {
            margin: 10px 0;
        }

        .banner-section img {
            width: 100%;
            border-radius: 2px;
            object-fit: cover;
            display: block;
        } */

        .banner-container {
            position: relative;
            width: 100%;
            max-width: 100%;
            height: 420px;
            overflow: hidden;
        }

        .banner-slide {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .banner-slide a {
            min-width: 100%;
            height: 420px;
        }

        .banner-slide img {
            width: 100%;
            height: 100%;
            object-position: center;
            display: block;
        }

        .banner-indicators {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .banner-indicators span {
            display: block;
            width: 12px;
            height: 12px;
            background: #fff;
            opacity: 0.5;
            border-radius: 50%;
            cursor: pointer;
        }

        .banner-indicators .active {
            opacity: 1;
            background: #1e4426;
        }

        .view-more-btn {
            position: absolute;
            bottom: 10px;
            /* Changed from top to bottom */
            right: 16px;
            background-color: #5cad92;
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            z-index: 10;
        }


        .view-more-btn:hover {
            background-color: #3f866f;
        }


        .categories-name-section {
            background-color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
        }

        

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }



        /* Footer */
        footer {
            background-color: #172337;
            color: white;
            padding: 20px 0;
            margin-top: 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 0 10px;
        }

        .footer-column h3 {
            font-size: 12px;
            color: #878787;
            margin-bottom: 10px;
            font-weight: 400;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 8px;
            font-size: 10px;
            cursor: pointer;
        }

        .copyright {
            text-align: center;
            margin-top: 20px;
            font-size: 10px;
            color: #878787;
            padding-top: 15px;
            border-top: 1px solid #454d5e;
        }

        /* Media Queries for Responsive Design */
        @media (min-width: 480px) {

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

        }



        @media (min-width: 768px) {

            .category-item {
                min-width: 110px;
                padding: 10px;
            }

            .category-item img {
                width: 64px;
                height: 64px;
            }

        }

        @media (min-width: 992px) {

            .footer-column h3 {
                font-size: 14px;
            }

            .footer-column ul li {
                font-size: 12px;
            }

            .copyright {
                font-size: 12px;
            }
        }