        .toolbox {
            display: flex;
            max-width: 600px;
            margin: 20px auto;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .toolbox img {
            width: 150px;
            height: 100%;
            object-fit: cover;
        }

        .toolbox-content {
            padding: 20px;
        }

        .toolbox-title {
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        .toolbox-description {
            color: #555;
            margin-bottom: 15px;
        }

        .toolbox-buttons {
            display: flex;
            justify-content: space-between;
        }

        .toolbox-button {
            padding: 10px 15px;
            background-color: #3498db;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .toolbox-button:hover {
            background-color: #2980b9;
        }