
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: Arial, sans-serif;
            padding: 20px 0;
            overflow-x: hidden;
        }
        
        .section-title {
            font-size: 40px;
            font-weight: bold;
            color: #000;
            text-align: center;
            margin-bottom: 30px;
            padding: 0 20px;
        }
        
        .logos-container {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            padding: 0 20px;
        }
        
        .logos-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 15px;
            justify-items: center;
            align-items: center;
            padding: 10px 0;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo-item {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5px;
        }
        
        .logo-item img {
            max-width: 100%;
            height: auto;
            max-height: 60px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }
        
        .logo-item img:hover {
            filter: grayscale(0%);
        }
        
        @media (max-width: 1200px) {
            .logos-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .section-title {
                font-size: 36px;
            }
            
            .logo-item img {
                max-height: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
            }
            
            .logos-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 10px;
            }
            
            .logo-item img {
                max-height: 45px;
            }
        }
        
        @media (max-width: 576px) {
            .logos-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            
            .logo-item img {
                max-height: 40px;
            }
        }
        
        @media (max-width: 400px) {
            .section-title {
                font-size: 28px;
            }
            
            .logos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .logo-item img {
                max-height: 35px;
            }
        }
    