
       
        .container-tool {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-mb-tool {
            padding: 60px 0;
        }

        .section-title-tool {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title-tool span {
            color: #ff5204;
        }

        .slider-container-tool {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background: white;
            padding: 30px 0;
        }

        .slider-wrapper-tool {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .card-tool {
            flex: 0 0 200px;
            margin: 0 15px;
            padding: 30px 20px;
            text-align: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .card-tool:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-color: #ff5204;
        }

        .card-tool img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .card-tool:hover img {
            transform: scale(1.1);
        }

        .card-tool h4 {
            color: #2c3e50;
            font-size: 1rem;
            font-weight: 600;
            margin-top: 10px;
        }

        .slider-nav-tool {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
            gap: 15px;
        }

        .nav-btn-tool {
            background: #ff5204;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn-tool:hover {
            background: #c0392b;
            transform: scale(1.1);
        }

        .nav-btn-tool:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
            transform: none;
        }

        .dots-container-tool {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .dot-tool {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #bdc3c7;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot-tool.active {
            background: #ff5204;
            transform: scale(1.3);
        }

        .slider-track-tool {
            display: flex;
            width: fit-content;
        }

        @media (max-width: 768px) {
            .section-title-tool {
                font-size: 2rem;
            }
            
            .card-tool {
                flex: 0 0 160px;
                margin: 0 10px;
                padding: 20px 15px;
            }
            
            .card-tool img {
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 480px) {
            .card-tool {
                flex: 0 0 140px;
                margin: 0 8px;
            }
            
            .card-tool img {
                width: 80px;
                height: 80px;
            }
        }
