        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        /* Brands Section */
        .brands-section {
            background: white;
            padding: 2rem 0;
            max-height: 200px;
            overflow: hidden;
            margin-top: 2%;
            
        }

        .brands-section h2 {
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: #333;
            font-weight: 600;
        }

        /* Scrolling Container */
        .brands-container {
            display: flex;
            align-items: center;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .brands-track {
            display: flex;
            align-items: center;
            gap: 3rem;
            padding: 0 2rem;
            animation: scroll 30s linear infinite;
        }

        /* Brand Logo Styles */
        .brand-logo {
            width: 120px;
            height: 60px;
            object-fit: contain;
            filter: grayscale(30%) brightness(0.9);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .brand-logo:hover {
            transform: scale(1.1);
            filter: grayscale(0%) brightness(1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Animation */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-120px * 8 - 3rem * 8));
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .brands-track {
                gap: 2rem;
                animation-duration: 20s;
            }

            .brand-logo {
                width: 100px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .brands-section h2 {
                font-size: 1.2rem;
                margin-bottom: 1rem;
            }

            .brands-track {
                gap: 1.5rem;
                animation-duration: 15s;
            }

            .brand-logo {
                width: 80px;
                height: 40px;
            }
        } 
    
 